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

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

Uses of CommandOutput in com.lambdaworks.redis
 

Methods in com.lambdaworks.redis that return CommandOutput
protected
<K,V,T> CommandOutput<K,V,T>
RedisAsyncConnection.newScriptOutput(RedisCodec<K,V> codec, ScriptOutputType type)
           
 

Methods in com.lambdaworks.redis with parameters of type CommandOutput
<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)
           
 

Uses of CommandOutput in com.lambdaworks.redis.output
 

Subclasses of CommandOutput in com.lambdaworks.redis.output
 class BooleanListOutput<K,V>
          List of boolean output.
 class BooleanOutput<K,V>
          Boolean output.
 class ByteArrayOutput<K,V>
          Byte array output.
 class DateOutput<K,V>
          Date output with no milliseconds.
 class DoubleOutput<K,V>
          Double output, may be null.
 class IntegerOutput<K,V>
          64-bit integer output, may be null.
 class KeyListOutput<K,V>
          List of keys output.
 class KeyOutput<K,V>
          Key output.
 class KeyValueOutput<K,V>
          Key-value pair output.
 class MapOutput<K,V>
          Map of keys and values output.
 class MultiOutput<K,V>
          Output of all commands within a MULTI block.
 class NestedMultiOutput<K,V>
          List of command outputs, possibly deeply nested.
 class ScoredValueListOutput<K,V>
          List of values and their associated scores.
 class StatusOutput<K,V>
          Status message output.
 class StringListOutput<K,V>
          List of string output.
 class ValueListOutput<K,V>
          List of values output.
 class ValueOutput<K,V>
          Value output.
 class ValueSetOutput<K,V>
          Set of value output.
 

Uses of CommandOutput in com.lambdaworks.redis.protocol
 

Fields in com.lambdaworks.redis.protocol declared as CommandOutput
protected  CommandOutput<K,V,T> Command.output
           
 

Methods in com.lambdaworks.redis.protocol that return CommandOutput
 CommandOutput<K,V,T> Command.getOutput()
          Get the object that holds this command's output.
 

Methods in com.lambdaworks.redis.protocol with parameters of type CommandOutput
 boolean RedisStateMachine.decode(ChannelBuffer buffer, CommandOutput<K,V,?> output)
          Attempt to decode a redis response and return a flag indicating whether a complete response was read.
 

Constructors in com.lambdaworks.redis.protocol with parameters of type CommandOutput
Command(CommandType type, CommandOutput<K,V,T> output, CommandArgs<K,V> args, boolean multi)
          Create a new command with the supplied type and args.
 

Uses of CommandOutput in com.lambdaworks.redis.pubsub
 

Subclasses of CommandOutput in com.lambdaworks.redis.pubsub
 class PubSubOutput<K,V>
          One element of the redis pub/sub stream.
 



Copyright © 2013. All Rights Reserved.