Package | Description |
---|---|
com.lambdaworks.redis | |
com.lambdaworks.redis.output | |
com.lambdaworks.redis.protocol | |
com.lambdaworks.redis.pubsub |
Modifier and Type | Method and Description |
---|---|
protected <K,V,T> CommandOutput<K,V,T> |
RedisAsyncConnection.newScriptOutput(RedisCodec<K,V> codec,
ScriptOutputType type) |
Modifier and Type | Method and Description |
---|---|
<T> io.netty.util.concurrent.Future<T> |
RedisAsyncConnection.dispatch(CommandType type,
CommandOutput<K,V,T> output) |
<T> io.netty.util.concurrent.Promise<T> |
RedisAsyncConnection.dispatch(CommandType type,
CommandOutput<K,V,T> output,
CommandArgs<K,V> args) |
<T> io.netty.util.concurrent.Future<T> |
RedisAsyncConnection.dispatch(CommandType type,
CommandOutput<K,V,T> output,
K key) |
<T> io.netty.util.concurrent.Future<T> |
RedisAsyncConnection.dispatch(CommandType type,
CommandOutput<K,V,T> output,
K key,
V value) |
<T> io.netty.util.concurrent.Future<T> |
RedisAsyncConnection.dispatch(CommandType type,
CommandOutput<K,V,T> output,
K key,
V[] values) |
Modifier and Type | Class and Description |
---|---|
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 |
ListMapOutput<K,V> |
class |
ListScanOutput<K,V> |
class |
MapKeyListOutput<K,V>
List of keys output. |
class |
MapOutput<K,V>
Map of keys and values output. |
class |
MapScanOutput<K,V> |
class |
MapValueListOutput<K,V>
List of values output. |
class |
MapValueOutput<K,V>
Value 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. |
class |
ValueSetScanOutput<K,V> |
Modifier and Type | Field and Description |
---|---|
protected CommandOutput<K,V,T> |
Command.output |
Modifier and Type | Method and Description |
---|---|
CommandOutput<K,V,T> |
Command.getOutput()
Get the object that holds this command's output.
|
Modifier and Type | Method and Description |
---|---|
boolean |
RedisStateMachine.decode(io.netty.buffer.ByteBuf buffer,
CommandOutput<K,V,?> output)
Attempt to decode a redis response and return a flag indicating whether a complete
response was read.
|
Constructor and Description |
---|
Command(CommandType type,
CommandOutput<K,V,T> output,
CommandArgs<K,V> args,
boolean multi,
io.netty.util.concurrent.Promise<T> proimse)
Create a new command with the supplied type and args.
|
Modifier and Type | Class and Description |
---|---|
class |
PubSubOutput<K,V>
One element of the redis pub/sub stream.
|
Copyright © 2014–2015. All rights reserved.