Versions in this module Expand all Collapse all v0 v0.16.2 Dec 14, 2023 v0.16.1 Dec 14, 2023 Changes in this version + type Event interface + type Publisher interface + Close func(Topic) + Publish func(Topic, Event) + Shutdown func() + Startup func() + func NewPublisher() Publisher + type Subscribable interface + Subscribe func(topic Topic, sub Subscriber) bool + Unsubscribe func(sub Subscriber) bool + type Subscriber interface + OnClose func(Topic) + OnNext func(Topic, Event) + type Topic interface + type TopicData interface