Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Queue ¶
type Queue interface {
// Send a message on the Queue
Send(interface{}) error
// Receive a message from the Queue
Receive(interface{}) (bool, error)
// Name of the queue
Name() string
// Delete the queue
Delete() error
}
Queue used to send and receive Messages
Click to show internal directories.
Click to hide internal directories.