Package com.redislabs.lettusearch
Interface AggregateReactiveCommands<K,V>
-
- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RediSearchReactiveCommands<K,V>
- All Known Implementing Classes:
RediSearchReactiveCommandsImpl
public interface AggregateReactiveCommands<K,V>Reactive executed commands for RediSearch search index.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<AggregateResults<K>>aggregate(K index, V query)reactor.core.publisher.Mono<AggregateResults<K>>aggregate(K index, V query, AggregateOptions options)reactor.core.publisher.Mono<AggregateWithCursorResults<K>>aggregate(K index, V query, Cursor cursor)reactor.core.publisher.Mono<AggregateWithCursorResults<K>>aggregate(K index, V query, Cursor cursor, AggregateOptions options)reactor.core.publisher.Mono<java.lang.String>cursorDelete(K index, long cursor)reactor.core.publisher.Mono<AggregateWithCursorResults<K>>cursorRead(K index, long cursor)reactor.core.publisher.Mono<AggregateWithCursorResults<K>>cursorRead(K index, long cursor, long count)
-
-
-
Method Detail
-
aggregate
reactor.core.publisher.Mono<AggregateResults<K>> aggregate(K index, V query)
-
aggregate
reactor.core.publisher.Mono<AggregateResults<K>> aggregate(K index, V query, AggregateOptions options)
-
aggregate
reactor.core.publisher.Mono<AggregateWithCursorResults<K>> aggregate(K index, V query, Cursor cursor)
-
aggregate
reactor.core.publisher.Mono<AggregateWithCursorResults<K>> aggregate(K index, V query, Cursor cursor, AggregateOptions options)
-
cursorRead
reactor.core.publisher.Mono<AggregateWithCursorResults<K>> cursorRead(K index, long cursor)
-
cursorRead
reactor.core.publisher.Mono<AggregateWithCursorResults<K>> cursorRead(K index, long cursor, long count)
-
cursorDelete
reactor.core.publisher.Mono<java.lang.String> cursorDelete(K index, long cursor)
-
-