Uses of Class
org.redisson.api.Message

Packages that use Message
Package
Description
 
  • Uses of Message in org.redisson.api

    Methods in org.redisson.api that return Message
    Modifier and Type
    Method
    Description
    RReliableQueue.add(QueueAddArgs<V> params)
    Adds a message to the queue with the specified parameters.
    RReliableQueue.get(String id)
    Returns message by id
    RReliableQueue.get(Codec headersCodec, String id)
    Returns message by id applying specified codec to headers
    RReliableQueue.poll()
    Retrieves and removes the head of this queue, or returns null if 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 Message
    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<Message<V>>
    RReliableQueueReactive.add(QueueAddArgs<V> params)
    Adds a message to the queue with the specified parameters.
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    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.
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.addMany(QueueAddArgs<V> params)
    Adds multiple messages to the queue in a Mono operation.
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    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.
    reactor.core.publisher.Mono<Message<V>>
    RReliableQueueReactive.get(String id)
    Returns message by id
    reactor.core.publisher.Mono<Message<V>>
    RReliableQueueReactive.get(Codec headersCodec, String id)
    Returns message by id applying specified codec to headers
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    RReliableQueueRx.get(String id)
    Returns message by id
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    RReliableQueueRx.get(Codec headersCodec, String id)
    Returns message by id applying specified codec to headers
    RReliableQueue.getAll(String... ids)
    Returns messages by ids
    RReliableQueue.getAll(Codec headersCodec, String... ids)
    Returns messages by ids applying specified codec to headers
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.getAll(String... ids)
    Returns messages by ids
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.getAll(Codec headersCodec, String... ids)
    Returns messages by ids applying specified codec to headers
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    RReliableQueueRx.getAll(String... ids)
    Returns messages by ids
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    RReliableQueueRx.getAll(Codec headersCodec, String... ids)
    Returns messages by ids applying specified codec to headers
    RReliableQueueAsync.getAllAsync(String... ids)
    Returns messages by ids
    RReliableQueueAsync.getAllAsync(Codec headersCodec, String... ids)
    Returns messages by ids applying specified codec to headers
    RReliableQueueAsync.getAsync(String id)
    Returns message by id
    RReliableQueueAsync.getAsync(Codec headersCodec, String id)
    Returns message by id applying specified codec to headers
    RReliableQueue.listAll()
    Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.
    RReliableQueue.listAll(Codec headersCodec)
    Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.listAll()
    Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.listAll(Codec headersCodec)
    Returns all messages in the queue, ready to be retrieved by the poll() command, using the specified codec for message header values.
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    RReliableQueueRx.listAll()
    Returns all messages in the queue, ready to be retrieved by the poll() command, without removing them.
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    RReliableQueueRx.listAll(Codec headersCodec)
    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.
    reactor.core.publisher.Mono<Message<V>>
    RReliableQueueReactive.poll()
    Retrieves and removes the head of this queue, or returns null if this queue is empty.
    reactor.core.publisher.Mono<Message<V>>
    RReliableQueueReactive.poll(QueuePollArgs args)
    Retrieves and removes the head of this queue with the specified polling arguments.
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    RReliableQueueRx.poll()
    Retrieves and removes the head of this queue, or returns null if this queue is empty.
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    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 returns null if 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.
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableQueueReactive.pollMany(QueuePollArgs pargs)
    Retrieves and removes multiple messages from the queue with the specified polling arguments.
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    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.
    reactor.core.publisher.Mono<Message<V>>
    RReliableFanoutReactive.publish(FanoutPublishArgs<V> args)
    Publishes a message to all subscribed queues based on the provided arguments.
    io.reactivex.rxjava3.core.Maybe<Message<V>>
    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.
    reactor.core.publisher.Mono<List<Message<V>>>
    RReliableFanoutReactive.publishMany(FanoutPublishArgs<V> args)
    Publishes multiple messages to all subscribed queues based on the provided arguments.
    io.reactivex.rxjava3.core.Single<List<Message<V>>>
    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.