Uses of Interface
com.microsoft.azure.servicebus.IMessage
-
Packages that use IMessage Package Description com.microsoft.azure.servicebus -
-
Uses of IMessage in com.microsoft.azure.servicebus
Classes in com.microsoft.azure.servicebus that implement IMessage Modifier and Type Class Description class
Message
Methods in com.microsoft.azure.servicebus that return IMessage Modifier and Type Method Description IMessage
IMessage. createCopy()
Creates a shallow copy of this message.IMessage
Message. createCopy()
IMessage
IMessageBrowser. peek()
reads next the active message without changing the state of the receiver or the message source.IMessage
IMessageBrowser. peek(long fromSequenceNumber)
Reads next the active message without changing the state of the receiver or the message source.IMessage
TopicClient. peek()
IMessage
TopicClient. peek(long fromSequenceNumber)
IMessage
IMessageReceiver. receive()
Receives aMessage
with default server wait time.IMessage
IMessageReceiver. receive(Duration serverWaitTime)
Receives aMessage
with specified server wait time.IMessage
IMessageReceiver. receiveDeferredMessage(long sequenceNumber)
Receives a deferredMessage
.Methods in com.microsoft.azure.servicebus that return types with arguments of type IMessage Modifier and Type Method Description CompletableFuture<IMessage>
IMessageBrowser. peekAsync()
Asynchronously reads the active messages without changing the state of the receiver or the message source.CompletableFuture<IMessage>
IMessageBrowser. peekAsync(long fromSequenceNumber)
Asynchronously reads next the active message without changing the state of the receiver or the message source.CompletableFuture<IMessage>
TopicClient. peekAsync()
CompletableFuture<IMessage>
TopicClient. peekAsync(long fromSequenceNumber)
Collection<IMessage>
IMessageBrowser. peekBatch(int messageCount)
Reads next batch of the active messages without changing the state of the receiver or the message source.Collection<IMessage>
IMessageBrowser. peekBatch(long fromSequenceNumber, int messageCount)
Reads next batch of the active messages without changing the state of the receiver or the message source.Collection<IMessage>
TopicClient. peekBatch(int messageCount)
Collection<IMessage>
TopicClient. peekBatch(long fromSequenceNumber, int messageCount)
CompletableFuture<Collection<IMessage>>
IMessageBrowser. peekBatchAsync(int messageCount)
Asynchronously reads the next batch of active messages without changing the state of the receiver or the message source.CompletableFuture<Collection<IMessage>>
IMessageBrowser. peekBatchAsync(long fromSequenceNumber, int messageCount)
Asynchronously reads the next batch of active messages without changing the state of the receiver or the message source.CompletableFuture<Collection<IMessage>>
TopicClient. peekBatchAsync(int messageCount)
CompletableFuture<Collection<IMessage>>
TopicClient. peekBatchAsync(long fromSequenceNumber, int messageCount)
CompletableFuture<IMessage>
IMessageReceiver. receiveAsync()
Receives aMessage
from Azure Service Bus.CompletableFuture<IMessage>
IMessageReceiver. receiveAsync(Duration serverWaitTime)
Receives aMessage
from Azure Service Bus with server wait time.Collection<IMessage>
IMessageReceiver. receiveBatch(int maxMessageCount)
Receives a maximum of maxMessageCountMessage
from Azure Service Bus.Collection<IMessage>
IMessageReceiver. receiveBatch(int maxMessageCount, Duration serverWaitTime)
Receives a maximum of maxMessageCountMessage
from Azure Service Bus with server wait time.CompletableFuture<Collection<IMessage>>
IMessageReceiver. receiveBatchAsync(int maxMessageCount)
Asynchronously receives a maximum of maxMessageCountMessage
from the entity.CompletableFuture<Collection<IMessage>>
IMessageReceiver. receiveBatchAsync(int maxMessageCount, Duration serverWaitTime)
Asynchronously receives a maximum of maxMessageCountMessage
from Azure Service Bus with server wait time.CompletableFuture<IMessage>
IMessageReceiver. receiveDeferredMessageAsync(long sequenceNumber)
Asynchronously receives a specific deferredMessage
identified by sequence number.Collection<IMessage>
IMessageReceiver. receiveDeferredMessageBatch(Collection<Long> sequenceNumbers)
Receives a batch of deferredMessage
.CompletableFuture<Collection<IMessage>>
IMessageReceiver. receiveDeferredMessageBatchAsync(Collection<Long> sequenceNumbers)
Asynchronously receives a set of deferredMessage
from the entity.Methods in com.microsoft.azure.servicebus with parameters of type IMessage Modifier and Type Method Description CompletableFuture<Void>
IMessageHandler. onMessageAsync(IMessage message)
The callback for message pump to pass receivedMessage
s.CompletableFuture<Void>
ISessionHandler. onMessageAsync(IMessageSession session, IMessage message)
The callback for message pump to pass receivedMessage
s.Instant
IMessageReceiver. renewMessageLock(IMessage message)
Renews the lock on the message specified by the lock token.CompletableFuture<Instant>
IMessageReceiver. renewMessageLockAsync(IMessage message)
Asynchronously renews the lock on the message specified by the lock token.long
IMessageSender. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc)
Sends a scheduled message to the Azure Service Bus entity this sender is connected to.long
IMessageSender. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
Sends a scheduled message to the Azure Service Bus entity this sender is connected to.long
QueueClient. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc)
long
QueueClient. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
long
TopicClient. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc)
long
TopicClient. scheduleMessage(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
CompletableFuture<Long>
IMessageSender. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc)
Sends a scheduled message to the Azure Service Bus entity this sender is connected to.CompletableFuture<Long>
IMessageSender. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
Sends a scheduled message to the Azure Service Bus entity this sender is connected to.CompletableFuture<Long>
QueueClient. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc)
CompletableFuture<Long>
QueueClient. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
CompletableFuture<Long>
TopicClient. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc)
CompletableFuture<Long>
TopicClient. scheduleMessageAsync(IMessage message, Instant scheduledEnqueueTimeUtc, TransactionContext transaction)
void
IMessageSender. send(IMessage message)
Sends a message to the Azure Service Bus entity this sender is connected to.void
IMessageSender. send(IMessage message, TransactionContext transaction)
Sends a message to the Azure Service Bus entity this sender is connected to.void
QueueClient. send(IMessage message)
void
QueueClient. send(IMessage message, TransactionContext transaction)
void
TopicClient. send(IMessage message)
void
TopicClient. send(IMessage message, TransactionContext transaction)
CompletableFuture<Void>
IMessageSender. sendAsync(IMessage message)
Sends a message to the Azure Service Bus entity this sender is connected to.CompletableFuture<Void>
IMessageSender. sendAsync(IMessage message, TransactionContext transaction)
Sends a message to the Azure Service Bus entity this sender is connected to.CompletableFuture<Void>
QueueClient. sendAsync(IMessage message)
CompletableFuture<Void>
QueueClient. sendAsync(IMessage message, TransactionContext transaction)
CompletableFuture<Void>
TopicClient. sendAsync(IMessage message)
CompletableFuture<Void>
TopicClient. sendAsync(IMessage message, TransactionContext transaction)
Method parameters in com.microsoft.azure.servicebus with type arguments of type IMessage Modifier and Type Method Description void
IMessageSender. sendBatch(Collection<? extends IMessage> messages)
Sends a batch of messages to the Azure Service Bus entity this sender is connected to.void
IMessageSender. sendBatch(Collection<? extends IMessage> messages, TransactionContext transaction)
Sends a batch of messages to the Azure Service Bus entity this sender is connected to.void
QueueClient. sendBatch(Collection<? extends IMessage> messages)
void
QueueClient. sendBatch(Collection<? extends IMessage> messages, TransactionContext transaction)
void
TopicClient. sendBatch(Collection<? extends IMessage> messages)
void
TopicClient. sendBatch(Collection<? extends IMessage> messages, TransactionContext transaction)
CompletableFuture<Void>
IMessageSender. sendBatchAsync(Collection<? extends IMessage> messages)
Sends a batch of messages to the Azure Service Bus entity this sender is connected to.CompletableFuture<Void>
IMessageSender. sendBatchAsync(Collection<? extends IMessage> messages, TransactionContext transaction)
Sends a batch of messages to the Azure Service Bus entity this sender is connected to.CompletableFuture<Void>
QueueClient. sendBatchAsync(Collection<? extends IMessage> messages)
CompletableFuture<Void>
QueueClient. sendBatchAsync(Collection<? extends IMessage> messages, TransactionContext transaction)
CompletableFuture<Void>
TopicClient. sendBatchAsync(Collection<? extends IMessage> messages)
CompletableFuture<Void>
TopicClient. sendBatchAsync(Collection<? extends IMessage> messages, TransactionContext transaction)
-