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
     
  • Method Summary

    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[]
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.springframework.data.redis.connection.ReactiveNumberCommands

    decr, decrBy, hIncrBy, incr, incrBy
  • Constructor Details

  • Method Details

    • 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:
      incr in interface org.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:
      incrBy in interface org.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:
      decr in interface org.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:
      decrBy in interface org.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:
      hIncrBy in interface org.springframework.data.redis.connection.ReactiveNumberCommands
    • toByteArray

      public static byte[] toByteArray(ByteBuffer buffer)