org.redisson.api.RDequeRx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.redisson.api;
import io.reactivex.rxjava3.core.Completable;
import io.reactivex.rxjava3.core.Flowable;
import io.reactivex.rxjava3.core.Maybe;
import io.reactivex.rxjava3.core.Single;
import org.redisson.api.queue.DequeMoveArgs;
/**
* RxJava2 interface for Deque object
*
* @author Nikita Koksharov
*
* @param the type of elements held in this collection
*/
public interface RDequeRx extends RQueueRx {
/**
* Adds element at the head of existing deque.
*
* @param elements - elements to add
* @return length of the list
*/
Single addFirstIfExists(V... elements);
/**
* Adds element at the tail of existing deque.
*
* @param elements - elements to add
* @return length of the list
*/
Single addLastIfExists(V... elements);
/**
* Adds elements at the head of deque.
*
* @param elements - elements to add
* @return length of the deque
*/
Single addFirst(V... elements);
/**
* Adds elements at the tail of deque.
*
* @param elements - elements to add
* @return length of the deque
*/
Single addLast(V... elements);
Flowable descendingIterator();
/**
* Removes last occurrence of element o
*
* @param o - element
* @return true
if object has been removed otherwise false
*/
Single removeLastOccurrence(Object o);
/**
* Retrieves and removes the last element of deque.
* Returns null
if there are no elements in deque.
*
* @return element
*/
Maybe removeLast();
/**
* Retrieves and removes the first element of deque.
* Returns null
if there are no elements in deque.
*
* @return element
*/
Maybe removeFirst();
/**
* Removes first occurrence of element o
*
* @param o - element to remove
* @return true
if object has been removed otherwise false
*/
Single removeFirstOccurrence(Object o);
/**
* Adds element at the head of this deque.
*
* @param e - element to add
* @return void
*/
Completable push(V e);
/**
* Retrieves and removes element at the head of this deque.
* Returns null
if there are no elements in deque.
*
* @return element
*/
Maybe pop();
/**
* Retrieves and removes element at the tail of this deque.
* Returns null
if there are no elements in deque.
*
* @return element
*/
Maybe pollLast();
/**
* Retrieves and removes element at the head of this deque.
* Returns null
if there are no elements in deque.
*
* @return element
*/
Maybe pollFirst();
/**
* Retrieves and removes the tail elements of this queue.
* Elements amount limited by limit
param.
*
* @return list of tail elements
*/
Flowable pollLast(int limit);
/**
* Retrieves and removes the head elements of this queue.
* Elements amount limited by limit
param.
*
* @return list of head elements
*/
Flowable pollFirst(int limit);
/**
* Returns element at the tail of this deque
* or null
if there are no elements in deque.
*
* @return element
*/
Maybe peekLast();
/**
* Returns element at the head of this deque
* or null
if there are no elements in deque.
*
* @return element
*/
Maybe peekFirst();
/**
* Adds element at the tail of this deque.
*
* @param e - element to add
* @return true
if element was added to this deque otherwise false
*/
Single offerLast(V e);
/**
* Returns element at the tail of this deque
* or null
if there are no elements in deque.
*
* @return element
*/
Maybe getLast();
/**
* Adds element at the tail of this deque.
*
* @param e - element to add
* @return void
*/
Completable addLast(V e);
/**
* Adds element at the head of this deque.
*
* @param e - element to add
* @return void
*/
Completable addFirst(V e);
/**
* Adds element at the head of this deque.
*
* @param e - element to add
* @return true
if element was added to this deque otherwise false
*/
Single offerFirst(V e);
/**
* Move element from this deque to the given destination deque.
* Returns moved element.
*
* Usage examples:
*
* V element = deque.move(DequeMoveArgs.pollLast()
* .addFirstTo("deque2"));
*
*
* V elements = deque.move(DequeMoveArgs.pollFirst()
* .addLastTo("deque2"));
*
*
* Requires Redis 6.2.0 and higher.
*
* @param args - arguments object
* @return moved element
*/
Maybe move(DequeMoveArgs args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy