All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redisson.api.RListReactive Maven / Gradle / Ivy

There is a newer version: 3.34.1
Show newest version
/**
 * Copyright (c) 2013-2022 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 java.util.Collection;
import java.util.List;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

/**
 *  list functions
 *
 * @author Nikita Koksharov
 *
 * @param  the type of elements held in this collection
 */
// TODO add sublist support
public interface RListReactive extends RCollectionReactive, RSortableReactive> {

    /**
     * Loads elements by specified indexes
     * 
     * @param indexes of elements
     * @return elements
     */
    Mono> get(int... indexes);
    
    /**
     * Add element after elementToFind
     * 
     * @param elementToFind - object to find
     * @param element - object to add
     * @return new list size
     */
    Mono addAfter(V elementToFind, V element);
    
    /**
     * Add element before elementToFind
     * 
     * @param elementToFind - object to find
     * @param element - object to add
     * @return new list size
     */
    Mono addBefore(V elementToFind, V element);
    
    Flux descendingIterator();

    Flux descendingIterator(int startIndex);

    Flux iterator(int startIndex);

    /**
     * Returns last index of element or 
     * -1 if element isn't found
     * 
     * @param element to find
     * @return index of -1 if element isn't found
     */
    Mono lastIndexOf(Object element);

    /**
     * Returns last index of element or 
     * -1 if element isn't found
     * 
     * @param element to find
     * @return index of -1 if element isn't found
     */
    Mono indexOf(Object element);

    /**
     * Inserts element at index. 
     * Subsequent elements are shifted. 
     * 
     * @param index - index number
     * @param element - element to insert
     * @return {@code true} if list was changed
     */
    Mono add(int index, V element);

    /**
     * Inserts elements at index. 
     * Subsequent elements are shifted. 
     * 
     * @param index - index number
     * @param elements - elements to insert
     * @return {@code true} if list changed
     *      or {@code false} if element isn't found
     */
    Mono addAll(int index, Collection elements);

    /**
     * Set element at index.
     * Works faster than {@link #set(int, Object)} but 
     * doesn't return previous element.
     * 
     * @param index - index of object
     * @param element - object
     * @return void
     */
    Mono fastSet(int index, V element);

    /**
     * Set element at index and returns previous element.
     * 
     * @param index - index of object
     * @param element - object
     * @return previous element or null if element wasn't set.
     */
    Mono set(int index, V element);

    /**
     * Get element at index
     * 
     * @param index - index of object
     * @return element
     */
    Mono get(int index);

    /**
     * Removes element at index.
     * 
     * @param index - index of object
     * @return element or null if element wasn't set.
     */
    Mono remove(int index);
    
    /**
     * Read all elements at once
     *
     * @return list of values
     */
    Mono> readAll();

    /**
     * Trim list and remains elements only in specified range
     * fromIndex, inclusive, and toIndex, inclusive.
     *
     * @param fromIndex - from index
     * @param toIndex - to index
     * @return void
     */
    Mono trim(int fromIndex, int toIndex);

    /**
     * Remove object by specified index
     * 
     * @param index - index of object
     * @return void
     */
    Mono fastRemove(int index);

    /**
     * Returns range of values from 0 index to toIndex. Indexes are zero based. 
     * -1 means the last element, -2 means penultimate and so on.
     * 
     * @param toIndex - end index
     * @return elements
     */
    Mono> range(int toIndex);
    
    /**
     * Returns range of values from fromIndex to toIndex index including.
     * Indexes are zero based. -1 means the last element, -2 means penultimate and so on.
     * 
     * @param fromIndex - start index
     * @param toIndex - end index
     * @return elements
     */
    Mono> range(int fromIndex, int toIndex);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy