| AbstractQueue |
Abstract base class for queues used in SwiftMQ.
|
| ActiveQueue |
Wrapper for an active (started) queue.
|
| FlowController |
Abstract base class for flow controllers.
|
| MessageEntry |
MessageEntry wraps one message entry of a queue, consisting of a message index
and the message.
|
| MessageIndex |
MessageIndex is the index of one message in a queue.
|
| MessageProcessor |
Abstract MessageProcessor to register at a QueuePullTransaction.
|
| QueueAlreadyDefinedException |
An exception thrown by the queue manager if the queue
that should be created is already defined.
|
| QueueBrowser |
A QueueBrowser is created by the QueueManager.
|
| QueueException |
An exception thrown by queues
|
| QueueFactory |
Interface for queue factories.
|
| QueueHandler |
QueueHandler is an internal base class for QueueBrowsers and QueueTransactionHandler.
|
| QueueHandlerClosedException |
An exception thrown by QueueHandlers if a method is invoked after the handler is closed.
|
| QueuePullTransaction |
Transaction to pull messages from a queue.
|
| QueuePushTransaction |
Transaction to push messages into a queue.
|
| QueueReceiver |
A QueueReceiver is a QueueTransactionHandler that serves as a factory
for QueuePullTransactions.
|
| QueueSender |
A QueueSender is a QueueTransactionHandler that serves as a factory
for QueuePushTransactions.
|
| QueueTimeoutException |
An exception thrown by QueuePullTransaction if a given timeout has been reached
|
| QueueTransaction |
Abstract base class for queue transactions.
|
| QueueTransactionClosedException |
An exception thrown from Transactions if the transaction is already closed
|
| QueueTransactionHandler |
A QueueTransactionHandler manages open transactions.
|
| Selector |
Interface for message selectors
|
| UnknownQueueException |
An exception thrown by the QueueManager if the queue is unknown
|
| WireTapSubscriber |
|