Interface RDequeAsync<V>

    • Method Detail

      • removeLastOccurrenceAsync

        RFuture<Boolean> removeLastOccurrenceAsync​(Object o)
        Removes last occurrence of element o
        Parameters:
        o - - element
        Returns:
        true if object has been removed otherwise false
      • removeLastAsync

        RFuture<V> removeLastAsync()
        Retrieves and removes the last element of deque. Returns null if there are no elements in deque.
        Returns:
        element
      • removeFirstAsync

        RFuture<V> removeFirstAsync()
        Retrieves and removes the first element of deque. Returns null if there are no elements in deque.
        Returns:
        element
      • removeFirstOccurrenceAsync

        RFuture<Boolean> removeFirstOccurrenceAsync​(Object o)
        Removes first occurrence of element o
        Parameters:
        o - - element to remove
        Returns:
        true if object has been removed otherwise false
      • pushAsync

        RFuture<Void> pushAsync​(V e)
        Adds element at the head of this deque.
        Parameters:
        e - - element to add
        Returns:
        void
      • popAsync

        RFuture<V> popAsync()
        Retrieves and removes element at the head of this deque. Returns null if there are no elements in deque.
        Returns:
        element
      • pollLastAsync

        RFuture<V> pollLastAsync()
        Retrieves and removes element at the tail of this deque. Returns null if there are no elements in deque.
        Returns:
        element
      • pollFirstAsync

        RFuture<V> pollFirstAsync()
        Retrieves and removes element at the head of this deque. Returns null if there are no elements in deque.
        Returns:
        element
      • peekLastAsync

        RFuture<V> peekLastAsync()
        Returns element at the tail of this deque or null if there are no elements in deque.
        Returns:
        element
      • peekFirstAsync

        RFuture<V> peekFirstAsync()
        Returns element at the head of this deque or null if there are no elements in deque.
        Returns:
        element
      • offerLastAsync

        RFuture<Boolean> offerLastAsync​(V e)
        Adds element at the tail of this deque.
        Parameters:
        e - - element to add
        Returns:
        true if element was added to this deque otherwise false
      • getLastAsync

        RFuture<V> getLastAsync()
        Returns element at the tail of this deque or null if there are no elements in deque.
        Returns:
        element
      • addLastAsync

        RFuture<Void> addLastAsync​(V e)
        Adds element at the tail of this deque.
        Parameters:
        e - - element to add
        Returns:
        void
      • addFirstAsync

        RFuture<Void> addFirstAsync​(V e)
        Adds element at the head of this deque.
        Parameters:
        e - - element to add
        Returns:
        void
      • offerFirstAsync

        RFuture<Boolean> offerFirstAsync​(V e)
        Adds element at the head of this deque.
        Parameters:
        e - - element to add
        Returns:
        true if element was added to this deque otherwise false