Versions in this module Expand all Collapse all v0 v0.0.5 Mar 27, 2023 Changes in this version + const DefaultBufSize + const ServiceDispatcher + const ServiceTimer + type DispatcherHander interface + type IScheduler interface + type IServiceDispatcher interface + AddDispatcherHandler func(dispatcherName string, handler DispatcherHander, handlerName ...string) error + CreateDispatcher func(dispatcherName string, params ...uint) error + Dispatch func(dispatcherName string, data interface{}) error + RemoveDispatcher func(dispatcherName string) error + RemoveDispatcherHandler func(dispatcherName string, handlerName string) error + type IServiceTimer interface + CreateTimer func(timerName string, handler TimerHander, itv ...time.Duration) error + RemoveTimer func(timerName string) error + type TimerHander func()