11cb0ef41Sopenharmony_ci'use strict' 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst EventEmitter = require('events') 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciclass Dispatcher extends EventEmitter { 61cb0ef41Sopenharmony_ci dispatch () { 71cb0ef41Sopenharmony_ci throw new Error('not implemented') 81cb0ef41Sopenharmony_ci } 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ci close () { 111cb0ef41Sopenharmony_ci throw new Error('not implemented') 121cb0ef41Sopenharmony_ci } 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci destroy () { 151cb0ef41Sopenharmony_ci throw new Error('not implemented') 161cb0ef41Sopenharmony_ci } 171cb0ef41Sopenharmony_ci} 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_cimodule.exports = Dispatcher 20