V - valuepublic interface RCollectionReactive<V> extends RExpirableReactive
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Boolean> |
add(V e)
Adds element into this collection.
|
reactor.core.publisher.Mono<Boolean> |
addAll(Collection<? extends V> c)
Adds all elements contained in the specified collection
|
reactor.core.publisher.Mono<Boolean> |
addAll(org.reactivestreams.Publisher<? extends V> c)
Adds all elements contained in the specified collection
|
reactor.core.publisher.Mono<Boolean> |
contains(V o)
Returns
true if this collection contains encoded state of the specified element. |
reactor.core.publisher.Mono<Boolean> |
containsAll(Collection<?> c)
Returns
true if this collection contains all of the elements
in the specified collection. |
reactor.core.publisher.Flux<V> |
iterator()
Returns iterator over collection elements
|
reactor.core.publisher.Mono<Boolean> |
remove(V o)
Removes a single instance of the specified element from this
collection, if it is present (optional operation).
|
reactor.core.publisher.Mono<Boolean> |
removeAll(Collection<?> c)
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
|
reactor.core.publisher.Mono<Boolean> |
retainAll(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
|
reactor.core.publisher.Mono<Integer> |
size()
Returns number of elements in this collection.
|
clearExpire, expire, expireAt, expireAt, remainTimeToLiveaddListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlinkreactor.core.publisher.Flux<V> iterator()
reactor.core.publisher.Mono<Boolean> retainAll(Collection<?> c)
c - collection containing elements to be retained in this collectiontrue if this collection changed as a result of the callreactor.core.publisher.Mono<Boolean> removeAll(Collection<?> c)
c - collection containing elements to be removed from this collectiontrue if this collection changed as a result of the
callreactor.core.publisher.Mono<Boolean> contains(V o)
true if this collection contains encoded state of the specified element.o - element whose presence in this collection is to be testedtrue if this collection contains the specified
element and false otherwisereactor.core.publisher.Mono<Boolean> containsAll(Collection<?> c)
true if this collection contains all of the elements
in the specified collection.c - collection to be checked for containment in this collectiontrue if this collection contains all of the elements
in the specified collectionreactor.core.publisher.Mono<Boolean> remove(V o)
o - element to be removed from this collection, if presenttrue if an element was removed as a result of this callreactor.core.publisher.Mono<Integer> size()
reactor.core.publisher.Mono<Boolean> add(V e)
e - - element to addtrue if an element was added
and false if it is already presentreactor.core.publisher.Mono<Boolean> addAll(org.reactivestreams.Publisher<? extends V> c)
c - - collection of elements to addtrue if at least one element was added
and false if all elements are already presentreactor.core.publisher.Mono<Boolean> addAll(Collection<? extends V> c)
c - - collection of elements to addtrue if at least one element was added
and false if all elements are already presentCopyright © 2014–2020 Redisson. All rights reserved.