mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-02-07 23:42:39 +00:00
7 lines
134 B
Go
7 lines
134 B
Go
package pubsub
|
|
|
|
// Subscriber will listen for Events from publishers
|
|
type Subscriber interface {
|
|
Topics() []EventType
|
|
Emit(Event)
|
|
}
|