Package | Description |
---|---|
org.aredis.cache |
Contains the core aredis related classes.
|
Modifier and Type | Class and Description |
---|---|
class |
BinaryHandler
A Data Handler which stores a Byte Array of data optionally compressing it.
|
class |
JavaHandler
The default Data Handler.
|
class |
StringHandler
A Data Handler which stores a String optionally compressing it.
|
Modifier and Type | Field and Description |
---|---|
static DataHandler |
AsyncRedisConnection.DEFAULT_HANDLER
The Default Data Handler if none is configured.
|
static DataHandler |
AsyncRedisConnection.JAVA_HANDLER
This
DataHandler is an instance of JavaHandler with normal Object serialization. |
static DataHandler |
AsyncRedisConnection.JAVA_HANDLER_NO_COMPRESS
Identical to JAVA_HANDLER but without compression.
|
static DataHandler |
AsyncRedisConnection.KEY_HANDLER
This
DataHandler is an instance of StringHandler . |
static DataHandler |
AsyncRedisConnection.OPTI_JAVA_HANDLER
This
DataHandler is an instance of JavaHandler . |
static DataHandler |
AsyncRedisConnection.OPTI_JAVA_HANDLER_NO_COMPRESS
Identical to OPTI_JAVA_HANDLER but without compression.
|
Modifier and Type | Method and Description |
---|---|
DataHandler |
AsyncRedisConnection.getDataHandler()
The default
DataHandler for commands |
DataHandler |
AsyncRedisFactory.getDataHandler()
Gets the Data Handler used by the factory.
|
DataHandler |
RedisCommandInfo.getDataHandler()
Gets the data handler
|
DataHandler |
SubscriptionInfo.getDataHandler()
Gets the Data Handler.
|
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 |
AsyncRedisConnection.setDataHandler(DataHandler pdataHandler)
Sets the default
DataHandler for commands |
void |
AsyncRedisFactory.setDataHandler(DataHandler pdataHandler)
Sets the Data Handler used by the factory
|
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.
|
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.
|
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
|
SubscriptionInfo(String pchannelName,
RedisMessageListener plistener,
boolean pisPatternSubscription,
DataHandler pdataHandler)
Creates a SubscriptionInfo.
|
SubscriptionInfo(String pchannelName,
RedisMessageListener plistener,
boolean pisPatternSubscription,
DataHandler pdataHandler,
Executor pexecutor)
Creates a SubscriptionInfo.
|
SubscriptionInfo(String pchannelName,
RedisMessageListener plistener,
boolean pisPatternSubscription,
DataHandler pdataHandler,
Object pmetaData)
Creates a SubscriptionInfo.
|
SubscriptionInfo(String pchannelName,
RedisMessageListener plistener,
boolean pisPatternSubscription,
DataHandler pdataHandler,
Object pmetaData,
Executor pexecutor)
Creates a SubscriptionInfo.
|
Copyright © 2013- Suresh Mahalingam. All Rights Reserved.