Package | Description |
---|---|
org.aredis.cache |
Contains the core aredis related classes.
|
Modifier and Type | Method and Description |
---|---|
RedisCommand |
RedisCommandInfo.getCommand()
Gets the command
|
RedisCommand |
RedisCommandInfo.getCommandRun()
Returns the actual command that was attempted to run.
|
static RedisCommand |
RedisCommand.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisCommand[] |
RedisCommand.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractAsyncRedisClient.sendCommand(DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.sendCommand(DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params)
Send a command without looking for a return value.
|
void |
AbstractAsyncRedisClient.sendCommand(DataHandler dataHandler,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.sendCommand(DataHandler dataHandler,
RedisCommand command,
Object... params)
Send a command without looking for a return value.
|
void |
AbstractAsyncRedisClient.sendCommand(Object metaData,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.sendCommand(Object metaData,
RedisCommand command,
Object... params)
Send a command without looking for a return value.
|
void |
AbstractAsyncRedisClient.sendCommand(RedisCommand command,
Object... params) |
void |
AsyncRedisClient.sendCommand(RedisCommand command,
Object... params)
Send a command without looking for a return value.
|
void |
AbstractAsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
void |
AbstractAsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
DataHandler dataHandler,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
DataHandler dataHandler,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
void |
AbstractAsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
Object metaData,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
Object metaData,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
void |
AbstractAsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
RedisCommand command,
Object... params) |
void |
AsyncRedisClient.submitCommand(AsyncHandler<RedisCommandInfo> completionHandler,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
Future<RedisCommandInfo> |
AbstractAsyncRedisClient.submitCommand(DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params) |
Future<RedisCommandInfo> |
AsyncRedisClient.submitCommand(DataHandler dataHandler,
Object metaData,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
Future<RedisCommandInfo> |
AbstractAsyncRedisClient.submitCommand(DataHandler dataHandler,
RedisCommand command,
Object... params) |
Future<RedisCommandInfo> |
AsyncRedisClient.submitCommand(DataHandler dataHandler,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
Future<RedisCommandInfo> |
AbstractAsyncRedisClient.submitCommand(Object metaData,
RedisCommand command,
Object... params) |
Future<RedisCommandInfo> |
AsyncRedisClient.submitCommand(Object metaData,
RedisCommand command,
Object... params)
Submit a Redis Command.
|
Future<RedisCommandInfo> |
AbstractAsyncRedisClient.submitCommand(RedisCommand command,
Object... params) |
Future<RedisCommandInfo> |
AsyncRedisClient.submitCommand(RedisCommand command,
Object... params)
Submit a Redis Command.
|
Constructor and Description |
---|
RedisCommandInfo(DataHandler pdataHandler,
Object pmetaData,
RedisCommand pcommand,
Object... pparams)
Creates a Redis CommandInfo Object
|
RedisCommandInfo(DataHandler pdataHandler,
RedisCommand pcommand,
Object... pparams)
Creates a Redis CommandInfo Object
|
RedisCommandInfo(Object pmetaData,
RedisCommand pcommand,
Object... pparams)
Creates a Redis CommandInfo Object which uses the Default Data Handler of the
AsyncRedisConnection . |
RedisCommandInfo(RedisCommand pcommand,
Object... pparams)
Creates a Redis CommandInfo Object which uses the Default Data Handler of the
AsyncRedisConnection . |
Copyright © 2013- Suresh Mahalingam. All Rights Reserved.