Versions in this module Expand all Collapse all v0 v0.1.0 May 8, 2018 Changes in this version + var ErrMuxClosed = errors.New("event: mux closed") + type Event struct + Data interface{} + Time time.Time + type Subscription interface + Chan func() <-chan *Event + Unsubscribe func() + type TypeMux struct + func (mux *TypeMux) Post(ev interface{}) error + func (mux *TypeMux) Stop() + func (mux *TypeMux) Subscribe(types ...interface{}) Subscription