Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventBus ¶
type EventBus interface {
Subscribe(topic string, fn interface{}) error
SubscribeAsync(topic string, fn interface{}, transactional bool) error
SubscribeOnce(topic string, fn interface{}) error
SubscribeOnceAsync(topic string, fn interface{}) error
HasCallback(topic string) bool
Unsubscribe(topic string, handler interface{}) error
Publish(topic string, args ...interface{})
WaitAsync()
}
EventBus is the contract for all Event Bus implementations
Click to show internal directories.
Click to hide internal directories.