main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
300 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | 'use strict'
|
---|
| 2 |
|
---|
| 3 | const EventEmitter = require('events')
|
---|
| 4 |
|
---|
| 5 | class Dispatcher extends EventEmitter {
|
---|
| 6 | dispatch () {
|
---|
| 7 | throw new Error('not implemented')
|
---|
| 8 | }
|
---|
| 9 |
|
---|
| 10 | close () {
|
---|
| 11 | throw new Error('not implemented')
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | destroy () {
|
---|
| 15 | throw new Error('not implemented')
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | module.exports = Dispatcher
|
---|
Note:
See
TracBrowser
for help on using the repository browser.