Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adapter ¶
type Adapter interface { // Open and configure the adapter Open(config string) error // Close the adapter Close() error // IsOpen checks if the adapter is ready for use IsOpen() bool // // CheckDbVersion checks if the actual database version matches adapter version. // CheckDbVersion() error // GetName returns the name of the adapter GetName() string // Put is used to store a message, the SSID provided must be a full SSID // SSID, where first element should be a contract ID. The time resolution // for TTL will be in seconds. The function is executed synchronously and // it returns an error if some error was encountered during storage. Put(contract uint32, topic, payload []byte) error // PutWithID is used to store a message using a pre generated ID, the SSID provided must be a full SSID // SSID, where first element should be a contract ID. The time resolution // for TTL will be in seconds. The function is executed synchronously and // it returns an error if some error was encountered during storage. PutWithID(contract uint32, messageId, topic, payload []byte) error // Get performs a query and attempts to fetch last n messages where // n is specified by limit argument. From and until times can also be specified // for time-series retrieval. Get(contract uint32, topic []byte) ([][]byte, error) // NewID generate messageId that can later used to store and delete message from message store NewID() ([]byte, error) // Delete is used to delete entry, the SSID provided must be a full SSID // SSID, where first element should be a contract ID. The function is executed synchronously and // it returns an error if some error was encountered during delete. Delete(contract uint32, messageId, topic []byte) error // Append appends message to the buffer. Append(delFlag bool, k uint64, data []byte) error // PutMessage is used to store a message. // it returns an error if some error was encountered during storage. PutMessage(blockId, key uint64, payload []byte) error // GetMessage performs a query and attempts to fetch message for the given blockId and key GetMessage(blockId, key uint64) ([]byte, error) // Keys performs a query and attempts to fetch all keys for given blockId. Keys(blockId uint64) []uint64 // DeleteMessage is used to delete message. // it returns an error if some error was encountered during delete. DeleteMessage(blockId, key uint64) error // Write writes message to log file, and also release older messages from log for the duration. Write() error // Recovery loads pending messages from log file into store Recovery(reset bool) (map[uint64][]byte, error) }
Adapter represents a message storage contract that message storage provides must fulfill.
Click to show internal directories.
Click to hide internal directories.