Package io.vertx.reactivex.redis.client
Class Request
- java.lang.Object
-
- io.vertx.reactivex.redis.client.Request
-
public class Request extends Object
Builder for REDIS requests that will be encoded according to the RESP protocol was introduced in Redis 1.2. Which became the standard way for talking with the Redis server in Redis 2.0. Redis protocol documentation states:Clients send commands to a Redis server as a RESP Array of Bulk Strings.
So all non String/Bulk types will be encoded to Bulk for convenience. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Request>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Requestarg(boolean arg)Adds a boolean encoded to stringRequestarg(byte arg)Adds a byte encoded to stringRequestarg(byte[] arg)Adds a byte arrayRequestarg(double arg)Adds a double encoded to stringRequestarg(float arg)Adds a float encoded to stringRequestarg(int arg)Adds a int encoded to stringRequestarg(long arg)Adds a long encoded to stringRequestarg(short arg)Adds a short encoded to stringRequestarg(JsonArray arg)Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ...Requestarg(JsonObject arg)Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ...Requestarg(Buffer arg)Adds a String key argumentRequestarg(String arg)Adds a String argument using UTF8 character encodingRequestarg(String arg, String enc)Adds a String using a specific character encoding argumentstatic Requestcmd(Command command)Creates a new request command.static Requestcmd(Command command, Object[] args)Commandcommand()Get the Command that is to be used by this request.booleanequals(Object o)RequestgetDelegate()inthashCode()static RequestnewInstance(Request arg)RequestnullArg()Deprecated.StringtoString()
-
-
-
Method Detail
-
getDelegate
public Request getDelegate()
-
cmd
public static Request cmd(Command command)
Creates a new request command. Requests can be reused to avoid GC.- Parameters:
command- the command to use- Returns:
- a new request instance
-
arg
public Request arg(String arg)
Adds a String argument using UTF8 character encoding- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(String arg, String enc)
Adds a String using a specific character encoding argument- Parameters:
arg-enc-- Returns:
- self
-
arg
public Request arg(long arg)
Adds a long encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(boolean arg)
Adds a boolean encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(JsonObject arg)
Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ... keyN, valueN. This is a non-optimized serialization and will just use the string encoding of the values for non buffers. Allnullvalues will follow the encoding rules ofnullArg().- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(JsonArray arg)
Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ... valueN. This is a non-optimized serialization and will just use the string encoding of the values for non buffers. Allnullvalues will follow the encoding rules ofnullArg().- Parameters:
arg-- Returns:
- self
-
nullArg
@Deprecated public Request nullArg()
Deprecated.- Returns:
- self
-
command
public Command command()
Get the Command that is to be used by this request.- Returns:
- the command.
-
cmd
public static Request cmd(Command command, Object[] args)
Creates a new request command only with simple types:Number,Boolean,String,byte[]or . This factory reduces the GC as it allocates the arguments array with the right size.- Parameters:
command- the command to useargs- the fixed list of arguments- Returns:
- a new request instance
-
arg
public Request arg(byte[] arg)
Adds a byte array- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(int arg)
Adds a int encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(short arg)
Adds a short encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(byte arg)
Adds a byte encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(float arg)
Adds a float encoded to string- Parameters:
arg-- Returns:
- self
-
arg
public Request arg(double arg)
Adds a double encoded to string- Parameters:
arg-- Returns:
- self
-
-