Class JedisClientDelegate

    • Constructor Summary

      Constructors 
      Constructor Description
      JedisClientDelegate​(java.lang.String name, redis.clients.jedis.util.Pool<redis.clients.jedis.Jedis> jedisPool)  
      JedisClientDelegate​(redis.clients.jedis.util.Pool<redis.clients.jedis.Jedis> jedisPool)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String name()  
      boolean supportsMultiKeyPipelines()  
      boolean supportsScripting()  
      boolean supportsTransactions()  
      void syncPipeline​(redis.clients.jedis.commands.RedisPipeline p)  
      void withBinaryClient​(java.util.function.Consumer<redis.clients.jedis.commands.BinaryJedisCommands> f)  
      <R> R withBinaryClient​(java.util.function.Function<redis.clients.jedis.commands.BinaryJedisCommands,​R> f)  
      void withCommandsClient​(java.util.function.Consumer<redis.clients.jedis.commands.JedisCommands> f)  
      <R> R withCommandsClient​(java.util.function.Function<redis.clients.jedis.commands.JedisCommands,​R> f)  
      void withKeyScan​(java.lang.String pattern, int count, java.util.function.Consumer<RedisScanResult> f)  
      void withMultiClient​(java.util.function.Consumer<redis.clients.jedis.commands.MultiKeyCommands> f)  
      <R> R withMultiClient​(java.util.function.Function<redis.clients.jedis.commands.MultiKeyCommands,​R> f)  
      void withMultiKeyPipeline​(java.util.function.Consumer<redis.clients.jedis.Pipeline> f)  
      <R> R withMultiKeyPipeline​(java.util.function.Function<redis.clients.jedis.Pipeline,​R> f)  
      void withPipeline​(java.util.function.Consumer<redis.clients.jedis.commands.RedisPipeline> f)  
      <R> R withPipeline​(java.util.function.Function<redis.clients.jedis.commands.RedisPipeline,​R> f)  
      void withScriptingClient​(java.util.function.Consumer<redis.clients.jedis.commands.ScriptingCommands> f)  
      <R> R withScriptingClient​(java.util.function.Function<redis.clients.jedis.commands.ScriptingCommands,​R> f)  
      void withTransaction​(java.util.function.Consumer<redis.clients.jedis.Transaction> f)  
      <R> R withTransaction​(java.util.function.Function<redis.clients.jedis.Transaction,​R> f)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JedisClientDelegate

        public JedisClientDelegate​(redis.clients.jedis.util.Pool<redis.clients.jedis.Jedis> jedisPool)
      • JedisClientDelegate

        public JedisClientDelegate​(java.lang.String name,
                                   redis.clients.jedis.util.Pool<redis.clients.jedis.Jedis> jedisPool)