Class RedissonReactiveNumberCommands
- java.lang.Object
-
- org.redisson.spring.data.connection.RedissonReactiveNumberCommands
-
- All Implemented Interfaces:
org.springframework.data.redis.connection.ReactiveNumberCommands
- Direct Known Subclasses:
RedissonReactiveClusterNumberCommands
public class RedissonReactiveNumberCommands extends Object implements org.springframework.data.redis.connection.ReactiveNumberCommands
- Author:
- Nikita Koksharov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.springframework.data.redis.connection.ReactiveNumberCommands
org.springframework.data.redis.connection.ReactiveNumberCommands.DecrByCommand<T extends Number>, org.springframework.data.redis.connection.ReactiveNumberCommands.HIncrByCommand<T extends Number>, org.springframework.data.redis.connection.ReactiveNumberCommands.IncrByCommand<T extends Number>
-
-
Constructor Summary
Constructors Constructor Description RedissonReactiveNumberCommands(CommandReactiveExecutor executorService)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand,Long>>decr(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand> keys)<T extends Number>
reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.DecrByCommand<T>,T>>decrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.DecrByCommand<T>> commands)<T extends Number>
reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.HIncrByCommand<T>,T>>hIncrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.HIncrByCommand<T>> commands)reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand,Long>>incr(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand> keys)<T extends Number>
reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.IncrByCommand<T>,T>>incrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.IncrByCommand<T>> commands)static byte[]toByteArray(ByteBuffer buffer)
-
-
-
Constructor Detail
-
RedissonReactiveNumberCommands
public RedissonReactiveNumberCommands(CommandReactiveExecutor executorService)
-
-
Method Detail
-
incr
public reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand,Long>> incr(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand> keys)
- Specified by:
incrin interfaceorg.springframework.data.redis.connection.ReactiveNumberCommands
-
incrBy
public <T extends Number> reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.IncrByCommand<T>,T>> incrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.IncrByCommand<T>> commands)
- Specified by:
incrByin interfaceorg.springframework.data.redis.connection.ReactiveNumberCommands
-
decr
public reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand,Long>> decr(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand> keys)
- Specified by:
decrin interfaceorg.springframework.data.redis.connection.ReactiveNumberCommands
-
decrBy
public <T extends Number> reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.DecrByCommand<T>,T>> decrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.DecrByCommand<T>> commands)
- Specified by:
decrByin interfaceorg.springframework.data.redis.connection.ReactiveNumberCommands
-
hIncrBy
public <T extends Number> reactor.core.publisher.Flux<org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse<org.springframework.data.redis.connection.ReactiveNumberCommands.HIncrByCommand<T>,T>> hIncrBy(org.reactivestreams.Publisher<org.springframework.data.redis.connection.ReactiveNumberCommands.HIncrByCommand<T>> commands)
- Specified by:
hIncrByin interfaceorg.springframework.data.redis.connection.ReactiveNumberCommands
-
toByteArray
public static byte[] toByteArray(ByteBuffer buffer)
-
-