Merge pull request #45 from libp2p/feat/event-bus-signature

Return error in Emit
This commit is contained in:
bigs
2019-08-06 16:32:28 -04:00
committed by GitHub

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.