Uses of Class
org.redisson.api.Message
Packages that use Message
-
Uses of Message in org.redisson.api
Methods in org.redisson.api that return MessageModifier and TypeMethodDescriptionRReliableQueue.add(QueueAddArgs<V> params) Adds a message to the queue with the specified parameters.Returns message by idReturns message by id applying specified codec to headersRReliableQueue.poll()Retrieves and removes the head of this queue, or returnsnullif this queue is empty.RReliableQueue.poll(QueuePollArgs args) Retrieves and removes the head of this queue with the specified polling arguments.RReliableFanout.publish(FanoutPublishArgs<V> args) Publishes a message to all subscribed queues based on the provided arguments.Methods in org.redisson.api that return types with arguments of type MessageModifier and TypeMethodDescriptionRReliableQueueReactive.add(QueueAddArgs<V> params) Adds a message to the queue with the specified parameters.RReliableQueueRx.add(QueueAddArgs<V> params) Adds a message to the queue with the specified parameters.RReliableQueueAsync.addAsync(QueueAddArgs<V> params) Adds a message to the queue with the specified parameters.RReliableQueue.addMany(QueueAddArgs<V> params) Adds multiple messages to the queue in a single operation.RReliableQueueReactive.addMany(QueueAddArgs<V> params) Adds multiple messages to the queue in a Mono operation.RReliableQueueRx.addMany(QueueAddArgs<V> params) Adds multiple messages to the queue in a single operation.RReliableQueueAsync.addManyAsync(QueueAddArgs<V> params) Adds multiple messages to the queue in a single operation.Returns message by idReturns message by id applying specified codec to headersReturns message by idReturns message by id applying specified codec to headersReturns messages by idsReturns messages by ids applying specified codec to headersReturns messages by idsReturns messages by ids applying specified codec to headersReturns messages by idsReturns messages by ids applying specified codec to headersRReliableQueueAsync.getAllAsync(String... ids) Returns messages by idsRReliableQueueAsync.getAllAsync(Codec headersCodec, String... ids) Returns messages by ids applying specified codec to headersReturns message by idReturns message by id applying specified codec to headersRReliableQueue.listAll()Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.RReliableQueueReactive.listAll()Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.RReliableQueueRx.listAll()Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.RReliableQueueAsync.listAllAsync()Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.RReliableQueueAsync.listAllAsync(Codec headersCodec) Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.RReliableQueueReactive.poll()Retrieves and removes the head of this queue, or returnsnullif this queue is empty.RReliableQueueReactive.poll(QueuePollArgs args) Retrieves and removes the head of this queue with the specified polling arguments.RReliableQueueRx.poll()Retrieves and removes the head of this queue, or returnsnullif this queue is empty.RReliableQueueRx.poll(QueuePollArgs args) Retrieves and removes the head of this queue with the specified polling arguments.RReliableQueueAsync.pollAsync()Retrieves and removes the head of this queue, or returnsnullif this queue is empty.RReliableQueueAsync.pollAsync(QueuePollArgs args) Retrieves and removes the head of this queue with the specified polling arguments.RReliableQueue.pollMany(QueuePollArgs pargs) Retrieves and removes multiple messages from the queue with the specified polling arguments.RReliableQueueReactive.pollMany(QueuePollArgs pargs) Retrieves and removes multiple messages from the queue with the specified polling arguments.RReliableQueueRx.pollMany(QueuePollArgs pargs) Retrieves and removes multiple messages from the queue with the specified polling arguments.RReliableQueueAsync.pollManyAsync(QueuePollArgs pargs) Retrieves and removes multiple messages from the queue with the specified polling arguments.RReliableFanoutReactive.publish(FanoutPublishArgs<V> args) Publishes a message to all subscribed queues based on the provided arguments.RReliableFanoutRx.publish(FanoutPublishArgs<V> args) Publishes a message to all subscribed queues based on the provided arguments.RReliableFanoutAsync.publishAsync(FanoutPublishArgs<V> args) Publishes a message to all subscribed queues based on the provided arguments.RReliableFanout.publishMany(FanoutPublishArgs<V> args) Publishes multiple messages to all subscribed queues based on the provided arguments.RReliableFanoutReactive.publishMany(FanoutPublishArgs<V> args) Publishes multiple messages to all subscribed queues based on the provided arguments.RReliableFanoutRx.publishMany(FanoutPublishArgs<V> args) Publishes multiple messages to all subscribed queues based on the provided arguments.RReliableFanoutAsync.publishManyAsync(FanoutPublishArgs<V> args) Publishes multiple messages to all subscribed queues based on the provided arguments.