IMessageBrowser Interface
public interface IMessageBrowser
Represents a message browser that can browse messages from Azure Service Bus.
Method Summary
Modifier and Type | Method and Description |
---|---|
IMessage |
peek()
reads next the active message without changing the state of the receiver or the message source. The first call to peek() fetches the first active message for this receiver. Each subsequent call fetches the subsequent message in the entity. |
IMessage |
peek(long fromSequenceNumber)
Reads next the active message without changing the state of the receiver or the message source. |
CompletableFuture<IMessage> |
peekAsync()
Asynchronously reads the active messages without changing the state of the receiver or the message source. |
CompletableFuture<IMessage> |
peekAsync(long fromSequenceNumber)
Asynchronously reads next the active message without changing the state of the receiver or the message source. |
Collection<IMessage> |
peekBatch(int messageCount)
Reads next batch of the active messages without changing the state of the receiver or the message source. |
Collection<IMessage> |
peekBatch(long fromSequenceNumber, int messageCount)
Reads next batch of the active messages without changing the state of the receiver or the message source. |
CompletableFuture<Collection<IMessage>> |
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>> |
peekBatchAsync(long fromSequenceNumber, int messageCount)
Asynchronously reads the next batch of active messages without changing the state of the receiver or the message source. |
Method Details
peek
public IMessage peek()
reads next the active message without changing the state of the receiver or the message source. The first call to peek() fetches the first active message for this receiver. Each subsequent call fetches the subsequent message in the entity.
Returns:
Message peeked
Throws:
peek
public IMessage peek(long fromSequenceNumber)
Reads next the active message without changing the state of the receiver or the message source.
Parameters:
Returns:
Message peeked
Throws:
peekAsync
public CompletableFuture
Asynchronously reads the active messages without changing the state of the receiver or the message source.
Returns:
Message peeked
peekAsync
public CompletableFuture
Asynchronously reads next the active message without changing the state of the receiver or the message source.
Parameters:
Returns:
peekBatch
public Collection
Reads next batch of the active messages without changing the state of the receiver or the message source.
Parameters:
Returns:
Throws:
peekBatch
public Collection
Reads next batch of the active messages without changing the state of the receiver or the message source.
Parameters:
Returns:
Throws:
peekBatchAsync
public CompletableFuture
Asynchronously reads the next batch of active messages without changing the state of the receiver or the message source.
Parameters:
Returns:
peekBatchAsync
public CompletableFuture
Asynchronously reads the next batch of active messages without changing the state of the receiver or the message source.
Parameters:
Returns:
Applies to
Azure SDK for Java