Class QueueOperations
- java.lang.Object
-
- org.apache.camel.component.azure.storage.queue.operations.QueueOperations
-
public class QueueOperations extends Object
All operations related toQueueClient
. This is at the queue level
-
-
Constructor Summary
Constructors Constructor Description QueueOperations(QueueConfiguration configuration, QueueClientWrapper client)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueueOperationResponse
clearQueue(org.apache.camel.Exchange exchange)
QueueOperationResponse
createQueue(org.apache.camel.Exchange exchange)
QueueOperationResponse
deleteMessage(org.apache.camel.Exchange exchange)
QueueOperationResponse
deleteQueue(org.apache.camel.Exchange exchange)
QueueOperationResponse
peekMessages(org.apache.camel.Exchange exchange)
QueueOperationResponse
receiveMessages(org.apache.camel.Exchange exchange)
QueueOperationResponse
sendMessage(org.apache.camel.Exchange exchange)
QueueOperationResponse
updateMessage(org.apache.camel.Exchange exchange)
-
-
-
Constructor Detail
-
QueueOperations
public QueueOperations(QueueConfiguration configuration, QueueClientWrapper client)
-
-
Method Detail
-
createQueue
public QueueOperationResponse createQueue(org.apache.camel.Exchange exchange)
-
clearQueue
public QueueOperationResponse clearQueue(org.apache.camel.Exchange exchange)
-
deleteQueue
public QueueOperationResponse deleteQueue(org.apache.camel.Exchange exchange)
-
sendMessage
public QueueOperationResponse sendMessage(org.apache.camel.Exchange exchange)
-
deleteMessage
public QueueOperationResponse deleteMessage(org.apache.camel.Exchange exchange)
-
receiveMessages
public QueueOperationResponse receiveMessages(org.apache.camel.Exchange exchange)
-
peekMessages
public QueueOperationResponse peekMessages(org.apache.camel.Exchange exchange)
-
updateMessage
public QueueOperationResponse updateMessage(org.apache.camel.Exchange exchange)
-
-