Documentation ¶
Overview ¶
Package types contains the database types for the Executor.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContractType ¶ added in v0.0.184
type ContractType int
ContractType is the type of contract.
const ( // OriginContract is the Origin contract. OriginContract ContractType = iota + 1 // OriginContract // DestinationContract is the Destination contract. DestinationContract // DestinationContract // LightInboxContract is the LightInbox contract. LightInboxContract // LightInboxContract // InboxContract is the Inbox contract. InboxContract // InboxContract // SummitContract is the Summit contract. SummitContract // SummitContract // Other is the Other contract. Other // Other )
func (ContractType) String ¶ added in v0.0.184
func (i ContractType) String() string
type MessageStatusType ¶ added in v0.0.184
type MessageStatusType int
MessageStatusType is the type for message statuses on the Destination.
const ( // None is if the message has not been processed. None MessageStatusType = iota // None // Failed is if the message failed to be processed. Failed // Failed // Success is if the message was processed successfully. Success // Success )
func (MessageStatusType) String ¶ added in v0.0.184
func (i MessageStatusType) String() string
Click to show internal directories.
Click to hide internal directories.