Uses of Class
com.lambdaworks.redis.ScriptOutputType

Packages that use ScriptOutputType
com.lambdaworks.redis   
 

Uses of ScriptOutputType in com.lambdaworks.redis
 

Methods in com.lambdaworks.redis that return ScriptOutputType
static ScriptOutputType ScriptOutputType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ScriptOutputType[] ScriptOutputType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.lambdaworks.redis with parameters of type ScriptOutputType
<T> T
RedisConnection.eval(V script, ScriptOutputType type, K... keys)
          Eval the supplied script, which must result in the requested type.
<T> T
RedisConnection.eval(V script, ScriptOutputType type, K[] keys, V... values)
           
<T> Future<T>
RedisAsyncConnection.eval(V script, ScriptOutputType type, K[] keys, V... values)
           
<T> T
RedisConnection.evalsha(String digest, ScriptOutputType type, K... keys)
          Eval a pre-loaded script identified by its SHA-1 digest, which must result in the requested type.
<T> T
RedisConnection.evalsha(String digest, ScriptOutputType type, K[] keys, V... values)
           
<T> Future<T>
RedisAsyncConnection.evalsha(String digest, ScriptOutputType type, K[] keys, V... values)
           
protected
<K,V,T> CommandOutput<K,V,T>
RedisAsyncConnection.newScriptOutput(RedisCodec<K,V> codec, ScriptOutputType type)
           
 



Copyright © 2013. All Rights Reserved.