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 QueueOperationResponseclearQueue(org.apache.camel.Exchange exchange)QueueOperationResponsecreateQueue(org.apache.camel.Exchange exchange)QueueOperationResponsedeleteMessage(org.apache.camel.Exchange exchange)QueueOperationResponsedeleteQueue(org.apache.camel.Exchange exchange)QueueOperationResponsepeekMessages(org.apache.camel.Exchange exchange)QueueOperationResponsereceiveMessages(org.apache.camel.Exchange exchange)QueueOperationResponsesendMessage(org.apache.camel.Exchange exchange)QueueOperationResponseupdateMessage(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)
-
-