(evname string, cb Callback)
| 7 | // IDispatcher is the interface for event dispatchers. |
| 8 | type IDispatcher interface { |
| 9 | Subscribe(evname string, cb Callback) |
| 10 | SubscribeID(evname string, id interface{}, cb Callback) |
| 11 | UnsubscribeID(evname string, id interface{}) int |
| 12 | UnsubscribeAllID(id interface{}) int |
no outgoing calls
no test coverage detected