| 123456789101112131415161718192021222324252627282930313233 |
- package hub
-
- import (
- "context"
- "errors"
- "sync"
-
- "go.uber.org/zap"
- )
-
- var (
- Registry *registry
- Hub *hub
-
- ErrTimeout = errors.New("timeout")
- ErrClosed = errors.New("channel was closed")
- ErrCannotCreateConnection = errors.New("cannot create connection")
-
- initOnce sync.Once
- )
-
- func Init(ctx context.Context) {
- initOnce.Do(func() {
- Registry = ®istry{
- conns: map[string]*ctxChannel{},
- ctx: ctx,
- }
- Hub = &hub{
- subs: map[string]*connectionHub{},
- logger: zap.S().Named("hub"),
- }
- })
- }
|