Interface RBlockingQueueReactive<V>

Type Parameters:
V - the type of elements held in this collection
All Superinterfaces:
RCollectionReactive<V>, RExpirableReactive, RObjectReactive, RQueueReactive<V>
All Known Subinterfaces:
RBlockingDequeReactive<V>, RTransferQueueReactive<V>

public interface RBlockingQueueReactive<V> extends RQueueReactive<V>
Reactive interface for BlockingQueue object
Author:
Nikita Koksharov
  • Method Details

    • pollFromAny

      reactor.core.publisher.Mono<V> pollFromAny(long timeout, TimeUnit unit, String... queueNames)
      Retrieves and removes first available head element of any queue, waiting up to the specified wait time if necessary for an element to become available in any of defined queues including queue own.
      Parameters:
      queueNames - - names of queue
      timeout - how long to wait before giving up, in units of unit
      unit - a TimeUnit determining how to interpret the timeout parameter
      Returns:
      Mono object with the head of this queue, or null if the specified waiting time elapses before an element is available
    • pollFirstFromAny

      reactor.core.publisher.Mono<Map<String,List<V>>> pollFirstFromAny(Duration duration, int count, String... queueNames) throws InterruptedException
      Retrieves and removes first available head elements of any queue, waiting up to the specified wait time if necessary for an element to become available in any of defined queues including queue itself.

      Requires Redis 7.0.0 and higher.

      Parameters:
      duration - how long to wait before giving up
      count - elements amount
      queueNames - name of queues
      Returns:
      the head elements
      Throws:
      InterruptedException
    • pollLastFromAny

      reactor.core.publisher.Mono<Map<String,List<V>>> pollLastFromAny(Duration duration, int count, String... queueNames) throws InterruptedException
      Retrieves and removes first available tail elements of any queue, waiting up to the specified wait time if necessary for an element to become available in any of defined queues including queue itself.

      Requires Redis 7.0.0 and higher.

      Parameters:
      duration - how long to wait before giving up
      count - elements amount
      queueNames - name of queues
      Returns:
      the tail elements
      Throws:
      InterruptedException
    • drainTo

      reactor.core.publisher.Mono<Integer> drainTo(Collection<? super V> c, int maxElements)
      Removes at most the given number of available elements from this queue and adds them to the given collection in async mode. A failure encountered while attempting to add elements to collection c may result in elements being in neither, either or both collections when the associated exception is thrown. Attempts to drain a queue to itself result in IllegalArgumentException. Further, the behavior of this operation is undefined if the specified collection is modified while the operation is in progress.
      Parameters:
      c - the collection to transfer elements into
      maxElements - the maximum number of elements to transfer
      Returns:
      the number of elements transferred
      Throws:
      UnsupportedOperationException - if addition of elements is not supported by the specified collection
      ClassCastException - if the class of an element of this queue prevents it from being added to the specified collection
      NullPointerException - if the specified collection is null
      IllegalArgumentException - if the specified collection is this queue, or some property of an element of this queue prevents it from being added to the specified collection
    • drainTo

      reactor.core.publisher.Mono<Integer> drainTo(Collection<? super V> c)
      Removes all available elements from this queue and adds them to the given collection in async mode. This operation may be more efficient than repeatedly polling this queue. A failure encountered while attempting to add elements to collection c may result in elements being in neither, either or both collections when the associated exception is thrown. Attempts to drain a queue to itself result in IllegalArgumentException. Further, the behavior of this operation is undefined if the specified collection is modified while the operation is in progress.
      Parameters:
      c - the collection to transfer elements into
      Returns:
      the number of elements transferred
      Throws:
      UnsupportedOperationException - if addition of elements is not supported by the specified collection
      ClassCastException - if the class of an element of this queue prevents it from being added to the specified collection
      NullPointerException - if the specified collection is null
      IllegalArgumentException - if the specified collection is this queue, or some property of an element of this queue prevents it from being added to the specified collection
    • pollLastAndOfferFirstTo

      reactor.core.publisher.Mono<V> pollLastAndOfferFirstTo(String queueName, long timeout, TimeUnit unit)
      Retrieves and removes last available tail element of this queue and adds it at the head of queueName, waiting up to the specified wait time if necessary for an element to become available.
      Parameters:
      queueName - - names of destination queue
      timeout - how long to wait before giving up, in units of unit
      unit - a TimeUnit determining how to interpret the timeout parameter
      Returns:
      the tail of this queue, or null if the specified waiting time elapses before an element is available
    • poll

      reactor.core.publisher.Mono<V> poll(long timeout, TimeUnit unit)
      Retrieves and removes the head of this queue in async mode, waiting up to the specified wait time if necessary for an element to become available.
      Parameters:
      timeout - how long to wait before giving up, in units of unit
      unit - a TimeUnit determining how to interpret the timeout parameter
      Returns:
      the head of this queue, or null if the specified waiting time elapses before an element is available
    • takeLastAndOfferFirstTo

      reactor.core.publisher.Mono<V> takeLastAndOfferFirstTo(String queueName)
      Retrieves and removes last available tail element of any queue and adds it at the head of queueName, waiting if necessary for an element to become available in any of defined queues including queue itself.
      Parameters:
      queueName - - names of destination queue
      Returns:
      the tail of this queue, or null if the specified waiting time elapses before an element is available
    • take

      reactor.core.publisher.Mono<V> take()
      Retrieves and removes the head of this queue in async mode, waiting if necessary until an element becomes available.
      Returns:
      the head of this queue
    • put

      reactor.core.publisher.Mono<Void> put(V e)
      Inserts the specified element into this queue in async mode, waiting if necessary for space to become available.
      Parameters:
      e - the element to add
      Returns:
      void
      Throws:
      ClassCastException - if the class of the specified element prevents it from being added to this queue
      NullPointerException - if the specified element is null
      IllegalArgumentException - if some property of the specified element prevents it from being added to this queue
    • takeElements

      reactor.core.publisher.Flux<V> takeElements()
      Retrieves and removes continues stream of elements from the head of this queue. Waits for next element become available.
      Returns:
      stream of elements