Uses of Class
com.lambdaworks.redis.protocol.Command

Packages that use Command
com.lambdaworks.redis   
com.lambdaworks.redis.output   
com.lambdaworks.redis.protocol   
com.lambdaworks.redis.pubsub   
 

Uses of Command in com.lambdaworks.redis
 

Fields in com.lambdaworks.redis with type parameters of type Command
protected  BlockingQueue<Command<K,V,?>> RedisAsyncConnection.queue
           
 

Methods in com.lambdaworks.redis that return Command
<T> Command<K,V,T>
RedisAsyncConnection.dispatch(CommandType type, CommandOutput<K,V,T> output)
           
<T> Command<K,V,T>
RedisAsyncConnection.dispatch(CommandType type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)
           
<T> Command<K,V,T>
RedisAsyncConnection.dispatch(CommandType type, CommandOutput<K,V,T> output, K key)
           
<T> Command<K,V,T>
RedisAsyncConnection.dispatch(CommandType type, CommandOutput<K,V,T> output, K key, V value)
           
<T> Command<K,V,T>
RedisAsyncConnection.dispatch(CommandType type, CommandOutput<K,V,T> output, K key, V[] values)
           
 

Methods in com.lambdaworks.redis with parameters of type Command
<T> T
RedisAsyncConnection.await(Command<K,V,T> cmd, long timeout, TimeUnit unit)
           
 

Constructor parameters in com.lambdaworks.redis with type arguments of type Command
RedisAsyncConnection(BlockingQueue<Command<K,V,?>> queue, RedisCodec<K,V> codec, long timeout, TimeUnit unit)
          Initialize a new connection.
 

Uses of Command in com.lambdaworks.redis.output
 

Methods in com.lambdaworks.redis.output with parameters of type Command
 void MultiOutput.add(Command<K,V,?> cmd)
           
 

Uses of Command in com.lambdaworks.redis.protocol
 

Fields in com.lambdaworks.redis.protocol with type parameters of type Command
protected  BlockingQueue<Command<K,V,?>> CommandHandler.queue
           
 

Constructor parameters in com.lambdaworks.redis.protocol with type arguments of type Command
CommandHandler(BlockingQueue<Command<K,V,?>> queue)
          Initialize a new instance that handles commands from the supplied queue.
 

Uses of Command in com.lambdaworks.redis.pubsub
 

Constructor parameters in com.lambdaworks.redis.pubsub with type arguments of type Command
PubSubCommandHandler(BlockingQueue<Command<K,V,?>> queue, RedisCodec<K,V> codec)
          Initialize a new instance.
RedisPubSubConnection(BlockingQueue<Command<K,V,?>> queue, RedisCodec<K,V> codec, long timeout, TimeUnit unit)
          Initialize a new connection.
 



Copyright © 2013. All Rights Reserved.