Documentation ¶
Index ¶
- type AuthParams
- type Callbacks
- type ConnectParams
- type DisconnectParams
- type Initial
- type OnAuthCb
- type Option
- func AttachSession(val SessionCallbacks) Option
- func KeepAlive(val int) Option
- func MaxRxPacketSize(val uint32) Option
- func MaxRxTopicAlias(val uint16) Option
- func MaxTxPacketSize(val uint32) Option
- func MaxTxTopicAlias(val uint16) Option
- func Metric(val systree.PacketsMetric) Option
- func NetConn(val transport.Conn) Option
- func OfflineQoS0(val bool) Option
- func OnAuth(val OnAuthCb) Option
- func Permissions(val vlauth.Permissions) Option
- func Persistence(val persistence.Packets) Option
- func RetainAvailable(val bool) Option
- func RxQuota(val int32) Option
- func TxQuota(val int32) Option
- type Session
- type SessionCallbacks
- type WillConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthParams ¶ added in v0.0.4
type AuthParams struct { AuthMethod string AuthData []byte Reason mqttp.ReasonCode }
AuthParams ...
type Callbacks ¶
type Callbacks struct { // OnStop called when session stopped net connection and should be either suspended or deleted OnStop func(string, bool) }
Callbacks provided by sessions manager to signal session state
type ConnectParams ¶ added in v0.0.4
type ConnectParams struct { AuthParams ID string Error error ExpireIn *uint32 Will *mqttp.Publish Username []byte Password []byte MaxTxPacketSize uint32 SendQuota uint16 KeepAlive uint16 IDGen bool CleanStart bool Durable bool Version mqttp.ProtocolVersion }
ConnectParams ...
type DisconnectParams ¶
type DisconnectParams struct { Reason mqttp.ReasonCode Packets persistence.PersistedPackets }
DisconnectParams session state when stopped
type Initial ¶ added in v0.0.4
type Initial interface { Accept() (chan interface{}, error) Send(mqttp.IFace) error Acknowledge(p *mqttp.ConnAck, opts ...Option) bool Session() Session // contains filtered or unexported methods }
Initial ...
type OnAuthCb ¶ added in v0.0.4
type OnAuthCb func(string, *AuthParams) (mqttp.IFace, error)
OnAuthCb ...
type Option ¶ added in v0.0.4
type Option func(*impl) error
Option callback for connection option
func AttachSession ¶ added in v0.0.4
func AttachSession(val SessionCallbacks) Option
func MaxRxPacketSize ¶ added in v0.0.4
func MaxRxTopicAlias ¶ added in v0.0.4
func MaxTxPacketSize ¶ added in v0.0.4
func MaxTxTopicAlias ¶ added in v0.0.4
func Metric ¶ added in v0.0.4
func Metric(val systree.PacketsMetric) Option
func OfflineQoS0 ¶ added in v0.0.4
OfflineQoS0 if true QoS0 messages will be persisted when session is offline and durable
func Permissions ¶ added in v0.2.4
func Permissions(val vlauth.Permissions) Option
func Persistence ¶ added in v0.1.1
func Persistence(val persistence.Packets) Option
func RetainAvailable ¶ added in v0.0.4
type Session ¶ added in v0.0.4
type Session interface { Publish(string, *mqttp.Publish) SetOptions(opts ...Option) error // contains filtered or unexported methods }
Session ...
type SessionCallbacks ¶ added in v0.0.4
type SessionCallbacks interface { SignalPublish(*mqttp.Publish) error SignalSubscribe(*mqttp.Subscribe) (mqttp.IFace, error) SignalUnSubscribe(*mqttp.UnSubscribe) (mqttp.IFace, error) SignalDisconnect(*mqttp.Disconnect) (mqttp.IFace, error) SignalOnline() SignalOffline() SignalConnectionClose(DisconnectParams) }
SessionCallbacks ...
Click to show internal directories.
Click to hide internal directories.