Documentation ¶
Index ¶
Constants ¶
const ( SubscriptionKey = "SUB" // unique key to denote Subscriptions in a store SysInfoKey = "SYS" // unique key to denote server system information in a store RetainedKey = "RET" // unique key to denote retained messages in a store InflightKey = "IFM" // unique key to denote inflight messages in a store ClientKey = "CL" // unique key to denote clients in a store )
Variables ¶
var ( // ErrDBFileNotOpen indicates that the file database (e.g. bolt/badger) wasn't open for reading. ErrDBFileNotOpen = errors.New("db file not open") )
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { Will ClientWill `json:"will"` // will topic and payload data if applicable Properties ClientProperties `json:"properties"` // the connect properties for the client Username []byte `json:"username"` // the username of the client ID string `json:"id" storm:"id"` // the client id / storage key T string `json:"t"` // the data type (client) Remote string `json:"remote"` // the remote address of the client Listener string `json:"listener"` // the listener the client connected on ProtocolVersion byte `json:"protocolVersion"` // mqtt protocol version of the client Clean bool `json:"clean"` // if the client requested a clean start/session }
Client is a storable representation of an MQTT client.
func (Client) MarshalBinary ¶
MarshalBinary encodes the values into a json string.
func (*Client) UnmarshalBinary ¶
UnmarshalBinary decodes a json string into a struct.
type ClientProperties ¶
type ClientProperties struct { AuthenticationData []byte `json:"authenticationData,omitempty"` User []packets.UserProperty `json:"user,omitempty"` AuthenticationMethod string `json:"authenticationMethod,omitempty"` SessionExpiryInterval uint32 `json:"sessionExpiryInterval,omitempty"` MaximumPacketSize uint32 `json:"maximumPacketSize,omitempty"` ReceiveMaximum uint16 `json:"receiveMaximum,omitempty"` TopicAliasMaximum uint16 `json:"topicAliasMaximum,omitempty"` SessionExpiryIntervalFlag bool `json:"sessionExpiryIntervalFlag,omitempty"` RequestProblemInfo byte `json:"requestProblemInfo,omitempty"` RequestProblemInfoFlag bool `json:"requestProblemInfoFlag,omitempty"` RequestResponseInfo byte `json:"requestResponseInfo,omitempty"` }
ClientProperties contains a limited set of the mqtt v5 properties specific to a client connection.
type ClientWill ¶
type ClientWill struct { Payload []byte `json:"payload,omitempty"` User []packets.UserProperty `json:"user,omitempty"` TopicName string `json:"topicName,omitempty"` Flag uint32 `json:"flag,omitempty"` WillDelayInterval uint32 `json:"willDelayInterval,omitempty"` Qos byte `json:"qos,omitempty"` Retain bool `json:"retain,omitempty"` }
ClientWill contains a will message for a client, and limited mqtt v5 properties.
type Message ¶
type Message struct { Properties MessageProperties `json:"properties"` // - Payload []byte `json:"payload"` // the message payload (if retained) T string `json:"t,omitempty"` // the data type ID string `json:"id,omitempty" storm:"id"` // the storage key Origin string `json:"origin,omitempty"` // the id of the client who sent the message TopicName string `json:"topic_name,omitempty"` // the topic the message was sent to (if retained) FixedHeader packets.FixedHeader `json:"fixedheader"` // the header properties of the message Created int64 `json:"created,omitempty"` // the time the message was created in unixtime Sent int64 `json:"sent,omitempty"` // the last time the message was sent (for retries) in unixtime (if inflight) PacketID uint16 `json:"packet_id,omitempty"` // the unique id of the packet (if inflight) }
Message is a storable representation of an MQTT message (specifically publish).
func (Message) MarshalBinary ¶
MarshalBinary encodes the values into a json string.
func (*Message) UnmarshalBinary ¶
UnmarshalBinary decodes a json string into a struct.
type MessageProperties ¶
type MessageProperties struct { CorrelationData []byte `json:"correlationData,omitempty"` SubscriptionIdentifier []int `json:"subscriptionIdentifier,omitempty"` User []packets.UserProperty `json:"user,omitempty"` ContentType string `json:"contentType,omitempty"` ResponseTopic string `json:"responseTopic,omitempty"` MessageExpiryInterval uint32 `json:"messageExpiry,omitempty"` TopicAlias uint16 `json:"topicAlias,omitempty"` PayloadFormat byte `json:"payloadFormat,omitempty"` PayloadFormatFlag bool `json:"payloadFormatFlag,omitempty"` }
MessageProperties contains a limited subset of mqtt v5 properties specific to publish messages.
type Serializable ¶
type Serializable interface { UnmarshalBinary([]byte) error MarshalBinary() (data []byte, err error) }
Serializable is an interface for objects that can be serialized and deserialized.
type Subscription ¶
type Subscription struct { T string `json:"t,omitempty"` ID string `json:"id,omitempty" storm:"id"` Client string `json:"client,omitempty"` Filter string `json:"filter"` Identifier int `json:"identifier,omitempty"` RetainHandling byte `json:"retain_handling,omitempty"` Qos byte `json:"qos"` RetainAsPublished bool `json:"retain_as_pub,omitempty"` NoLocal bool `json:"no_local,omitempty"` }
Subscription is a storable representation of an MQTT subscription.
func (Subscription) MarshalBinary ¶
func (d Subscription) MarshalBinary() (data []byte, err error)
MarshalBinary encodes the values into a json string.
func (*Subscription) UnmarshalBinary ¶
func (d *Subscription) UnmarshalBinary(data []byte) error
UnmarshalBinary decodes a json string into a struct.
type SystemInfo ¶
type SystemInfo struct { system.Info // embed the system info struct T string `json:"t"` // the data type ID string `json:"id" storm:"id"` // the storage key }
SystemInfo is a storable representation of the system information values.
func (SystemInfo) MarshalBinary ¶
func (d SystemInfo) MarshalBinary() (data []byte, err error)
MarshalBinary encodes the values into a json string.
func (*SystemInfo) UnmarshalBinary ¶
func (d *SystemInfo) UnmarshalBinary(data []byte) error
UnmarshalBinary decodes a json string into a struct.
Directories ¶
Path | Synopsis |
---|---|
Package bolt is provided for historical compatibility and may not be actively updated, you should use the badger hook instead.
|
Package bolt is provided for historical compatibility and may not be actively updated, you should use the badger hook instead. |