Uses of Class
com.blackrook.redis.data.RedisObject
- 
Packages that use RedisObject Package Description com.blackrook.redis Contains classes relevant to connecting to Redis servers.com.blackrook.redis.commands Contains interfaces for implementing Redis commands.com.blackrook.redis.data Contains encapsulations for Redis objects and responses.com.blackrook.redis.enums Contains useful enumerations.com.blackrook.redis.io Contains classes relevant to reading and writing to Redis sockets. - 
- 
Uses of RedisObject in com.blackrook.redis
Methods in com.blackrook.redis that return RedisObject Modifier and Type Method Description RedisObjectRedisConnection. eval(String scriptContent, String[] keys, Object... args)RedisObjectRedisConnection. evalsha(String hash, String[] keys, Object... args)RedisObject[]RedisPipeline. finish()Send all pending commands in the pipeline and returns all of their return values.RedisObjectRedisServerConnection. object(String subcommand, String key)RedisObjectRedisServerConnection. pubsub(String subcommand, String... arguments)RedisObjectRedisUserConnection. sendCommandString(String commandString)Sends a request to a Redis server in the form of a literal command.RedisObjectRedisUserConnection. sendRequest(Object... arguments)Sends a raw request to a Redis server in the form of a literal command, already separated into tokens.RedisObjectRedisUserConnection. sendRequest(String... arguments)Sends a request to a Redis server in the form of a literal command, already separated into tokens.RedisObjectRedisServerConnection. slowlog(String subcommand, String argument)RedisObjectRedisServerConnection. slowlogGet(long recentCount)RedisObjectRedisServerConnection. slowlogLen()RedisObjectRedisServerConnection. slowlogReset() - 
Uses of RedisObject in com.blackrook.redis.commands
Methods in com.blackrook.redis.commands that return RedisObject Modifier and Type Method Description RedisObjectRedisConnectionCommands. eval(String scriptContent, String[] keys, Object... args)RedisObjectRedisConnectionCommands. evalsha(String hash, String[] keys, Object... args)RedisObjectRedisServerCommands. object(String subcommand, String key)RedisObjectRedisServerCommands. pubsub(String subcommand, String... arguments)RedisObjectRedisServerCommands. slowlog(String subcommand, String argument)RedisObjectRedisServerCommands. slowlogGet(long recentCount)RedisObjectRedisServerCommands. slowlogLen()RedisObjectRedisServerCommands. slowlogReset() - 
Uses of RedisObject in com.blackrook.redis.data
Fields in com.blackrook.redis.data declared as RedisObject Modifier and Type Field Description static RedisObjectRedisObject. NULLAll NULL string objects are this object.static RedisObjectRedisObject. NULL_ARRAYAll NULL array objects are this object.Methods in com.blackrook.redis.data that return RedisObject Modifier and Type Method Description static RedisObjectRedisObject. create(double value)Creates an object of type STRING, using a floating-point number.static RedisObjectRedisObject. create(long value)Creates an object of type INTEGER.static RedisObjectRedisObject. create(String value)Creates an object of type STRING.static RedisObjectRedisObject. create(String... value)Creates an object of type ARRAY.static RedisObjectRedisObject. createEmptyArray(int length)Creates an object of type ARRAY, but with allnullelements.static RedisObjectRedisObject. createError(String message)Creates an object of type ERROR.static RedisObjectRedisObject. createNull()Creates a null object (type STRING).static RedisObjectRedisObject. createNullArray()Creates a null object (type ARRAY).RedisObjectRedisObject. get(int index)If this is an array, this returns an element at a specific index in it.RedisObjectRedisObject. set(int index, double value)If this is an array, this sets an element at a specific index in it.RedisObjectRedisObject. set(int index, long value)If this is an array, this sets an element at a specific index in it.RedisObjectRedisObject. set(int index, RedisObject value)If this is an array, this sets an element at a specific index in it.RedisObjectRedisObject. set(int index, String value)If this is an array, this sets an element at a specific index in it.RedisObjectRedisObject. set(int index, String[] value)If this is an array, this sets an element at a specific index in it.Methods in com.blackrook.redis.data with parameters of type RedisObject Modifier and Type Method Description RedisObjectRedisObject. set(int index, RedisObject value)If this is an array, this sets an element at a specific index in it. - 
Uses of RedisObject in com.blackrook.redis.enums
Fields in com.blackrook.redis.enums with type parameters of type RedisObject Modifier and Type Field Description static ReturnType<RedisObject>ReturnType. OBJECTOBJECT return type. - 
Uses of RedisObject in com.blackrook.redis.io
Methods in com.blackrook.redis.io that return RedisObject Modifier and Type Method Description RedisObjectRESPReader. readObject()Reads a full Redis data structure as aRedisObject.Methods in com.blackrook.redis.io with parameters of type RedisObject Modifier and Type Method Description voidRESPWriter. writeObject(RedisObject object)Writes a full object that represents a Redis request. 
 -