|
| setMessageClass ($class) |
| Set class to use for message objects.
|
|
| getMessageClass () |
| Get class to use for message objects.
|
|
| setMessageSetClass ($class) |
| Set class to use for message collection objects.
|
|
| getMessageSetClass () |
| Get class to use for message collection objects.
|
|
| createQueue ($name, $options=null) |
| Create a queue.
|
|
| deleteQueue ($queueId, $options=null) |
| Delete a queue.
|
|
| listQueues ($options=null) |
| List all queues.
|
|
| fetchQueueMetadata ($queueId, $options=null) |
| Get a key/value array of metadata for the given queue.
|
|
| storeQueueMetadata ($queueId, $metadata, $options=null) |
| Store a key/value array of metadata for the specified queue.
|
|
| sendMessage ($queueId, $message, $options=null) |
| Send a message to the specified queue.
|
|
| receiveMessages ($queueId, $max=1, $options=null) |
| Recieve at most $max messages from the specified queue and return the message IDs for messages recieved.
|
|
| peekMessages ($queueId, $num=1, $options=null) |
| Peek at the messages from the specified queue without removing them.
|
|
| deleteMessage ($queueId, $message, $options=null) |
| Delete the specified message from the specified queue.
|
|
| getClient () |
| Get the concrete adapter.
|
|