org.redisson.api.RSetRx Maven / Gradle / Ivy
/**
* Copyright 2018 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.Set;
import io.reactivex.Flowable;
/**
* RxJava2 interface for RSetCache object
*
* @author Nikita Koksharov
*
* @param value
*/
public interface RSetRx extends RCollectionRx, RSortableRx> {
/**
* Returns RPermitExpirableSemaphore
instance associated with value
*
* @param value - set value
* @return RPermitExpirableSemaphore object
*/
RPermitExpirableSemaphoreRx getPermitExpirableSemaphore(V value);
/**
* Returns RSemaphore
instance associated with value
*
* @param value - set value
* @return RSemaphore object
*/
RSemaphoreRx getSemaphore(V value);
/**
* Returns RLock
instance associated with value
*
* @param value - set value
* @return RLock object
*/
RLockRx getFairLock(V value);
/**
* Returns RReadWriteLock
instance associated with value
*
* @param value - set value
* @return RReadWriteLock object
*/
RReadWriteLockRx getReadWriteLock(V value);
/**
* Returns lock instance associated with value
*
* @param value - set value
* @return RLock object
*/
RLockRx getLock(V value);
/**
* Returns an iterator over elements in this set.
* Elements are loaded in batch. Batch size is defined by count
param.
*
* @param count - size of elements batch
* @return iterator
*/
Flowable iterator(int count);
/**
* Returns an iterator over elements in this set.
* Elements are loaded in batch. Batch size is defined by count
param.
* If pattern is not null then only elements match this pattern are loaded.
*
* @param pattern - search pattern
* @param count - size of elements batch
* @return iterator
*/
Flowable iterator(String pattern, int count);
/**
* Returns iterator over elements in this set matches pattern
.
*
* @param pattern - search pattern
* @return iterator
*/
Flowable iterator(String pattern);
/**
* Removes and returns random elements from set
* in async mode
*
* @param amount of random values
* @return random values
*/
Flowable> removeRandom(int amount);
/**
* Removes and returns random element from set
* in async mode
*
* @return value
*/
Flowable removeRandom();
/**
* Returns random element from set
* in async mode
*
* @return value
*/
Flowable random();
/**
* Move a member from this set to the given destination set in async mode.
*
* @param destination the destination set
* @param member the member to move
* @return true if the element is moved, false if the element is not a
* member of this set or no operation was performed
*/
Flowable move(String destination, V member);
/**
* Read all elements at once
*
* @return values
*/
Flowable> readAll();
/**
* Union sets specified by name and write to current set.
* If current set already exists, it is overwritten.
*
* @param names - name of sets
* @return size of union
*/
Flowable union(String... names);
/**
* Union sets specified by name with current set.
* Without current set state change.
*
* @param names - name of sets
* @return size of union
*/
Flowable> readUnion(String... names);
/**
* Diff sets specified by name and write to current set.
* If current set already exists, it is overwritten.
*
* @param names - name of sets
* @return size of diff
*/
Flowable diff(String... names);
/**
* Diff sets specified by name with current set.
* Without current set state change.
*
* @param names - name of sets
* @return values
*/
Flowable> readDiff(String... names);
/**
* Intersection sets specified by name and write to current set.
* If current set already exists, it is overwritten.
*
* @param names - name of sets
* @return size of intersection
*/
Flowable intersection(String... names);
/**
* Intersection sets specified by name with current set.
* Without current set state change.
*
* @param names - name of sets
* @return values
*/
Flowable> readIntersection(String... names);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy