Documentation ¶
Index ¶
- Variables
- func Listen(addr string, opts ...Option)
- func Shutdown()
- type Group
- func (c *Group) Add(session *session.Session) error
- func (c *Group) Broadcast(route string, v interface{}) error
- func (c *Group) Close() error
- func (c *Group) Contains(uid int64) bool
- func (c *Group) Count() int
- func (c *Group) Leave(s *session.Session) error
- func (c *Group) LeaveAll() error
- func (c *Group) Member(uid int64) (*session.Session, error)
- func (c *Group) Members() []int64
- func (c *Group) Multicast(route string, v interface{}, filter SessionFilter) error
- type Option
- func WithAdvertiseAddr(addr string, retryInterval ...time.Duration) Option
- func WithCheckOriginFunc(fn func(*http.Request) bool) Option
- func WithClientAddr(addr string) Option
- func WithComponents(components *component.Components) Option
- func WithDebugMode() Option
- func WithDictionary(dict map[string]uint16) Option
- func WithGrpcOptions(opts ...grpc.DialOption) Option
- func WithHeartbeatInterval(d time.Duration) Option
- func WithIsWebsocket(enableWs bool) Option
- func WithLabel(label string) Option
- func WithLogger(l log.Logger) Option
- func WithMaster() Option
- func WithPipeline(pipeline pipeline.Pipeline) Option
- func WithSerializer(serializer serialize.Serializer) Option
- func WithTSLConfig(certificate, key string) Option
- func WithTimerPrecision(precision time.Duration) Option
- func WithWSPath(path string) Option
- type SessionFilter
Constants ¶
This section is empty.
Variables ¶
var ( ErrCloseClosedGroup = errors.New("close closed group") ErrClosedGroup = errors.New("group closed") ErrMemberNotFound = errors.New("member not found in the group") ErrSessionDuplication = errors.New("session has existed in the current group") )
Errors that could be occurred during message handling.
var VERSION = "0.5.0"
VERSION returns current nano version
Functions ¶
Types ¶
type Group ¶
type Group struct {
// contains filtered or unexported fields
}
Group represents a session group which used to manage a number of sessions, data send to the group will send to all session in it.
type Option ¶
func WithAdvertiseAddr ¶
WithAdvertiseAddr sets the advertise address option, it will be the listen address in master node and an advertise address which cluster member to connect
func WithCheckOriginFunc ¶
WithCheckOriginFunc sets the function that check `Origin` in http headers
func WithClientAddr ¶
WithMemberAddr sets the listen address which is used to establish connection between cluster members. Will select an available port automatically if no member address setting and panic if no available port
func WithComponents ¶
func WithComponents(components *component.Components) Option
WithComponents sets the Components
func WithDictionary ¶
SetDictionary sets routes map
func WithGrpcOptions ¶
func WithGrpcOptions(opts ...grpc.DialOption) Option
WithGrpcOptions sets the grpc dial options
func WithHeartbeatInterval ¶
WithHeartbeatInterval sets Heartbeat time interval
func WithIsWebsocket ¶
WithIsWebsocket indicates whether current node WebSocket is enabled
func WithMaster ¶
func WithMaster() Option
WithMaster sets the option to indicate whether the current node is master node
func WithPipeline ¶
func WithSerializer ¶
func WithSerializer(serializer serialize.Serializer) Option
WithSerializer customizes application serializer, which automatically Marshal and UnMarshal handler payload
func WithTSLConfig ¶
WithTSLConfig sets the `key` and `certificate` of TSL
func WithTimerPrecision ¶
SetTimerPrecision sets the ticker precision, and time precision can not less than a Millisecond, and can not change after application running. The default precision is time.Second
func WithWSPath ¶
type SessionFilter ¶
SessionFilter represents a filter which was used to filter session when Multicast, the session will receive the message while filter returns true.
Directories ¶
Path | Synopsis |
---|---|
clusterpb
Package clusterpb is a generated protocol buffer package.
|
Package clusterpb is a generated protocol buffer package. |
internal
|
|
env
env represents the environment of the current process, includes work path and config path etc.
|
env represents the environment of the current process, includes work path and config path etc. |