| 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> 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) |
| 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 |
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. |
| 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(org.jboss.netty.buffer.ChannelBuffer 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)
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 © 2025. All rights reserved.