Return error in Emit

This commit is contained in:
Cole Brown 2019-07-30 17:00:04 -04:00
parent 9698a72f45
commit baf7d1a4e3

View File

@ -19,7 +19,7 @@ type Emitter interface {
// calls to Emit will block.
//
// Calling this function with wrong event type will cause a panic.
Emit(evt interface{})
Emit(evt interface{}) error
}
// Subscription represents a subscription to one or multiple event types.