public class RedisAPI extends Object
original
non RX-ified interface using Vert.x codegen.Modifier and Type | Field and Description |
---|---|
static TypeArg<RedisAPI> |
__TYPE_ARG |
Constructor and Description |
---|
RedisAPI(Object delegate) |
RedisAPI(io.vertx.redis.client.RedisAPI delegate) |
Modifier and Type | Method and Description |
---|---|
static RedisAPI |
api(Redis client) |
static RedisAPI |
api(RedisConnection connection) |
RedisAPI |
append(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command append.
|
rx.Observable<Response> |
appendObservable(String arg0,
String arg1)
Deprecated.
use
rxAppend(java.lang.String, java.lang.String) instead |
RedisAPI |
asking(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command asking.
|
rx.Observable<Response> |
askingObservable()
Deprecated.
use
rxAsking() instead |
RedisAPI |
auth(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command auth.
|
rx.Observable<Response> |
authObservable(String arg0)
Deprecated.
use
rxAuth(java.lang.String) instead |
RedisAPI |
bgrewriteaof(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bgrewriteaof.
|
rx.Observable<Response> |
bgrewriteaofObservable()
Deprecated.
use
rxBgrewriteaof() instead |
RedisAPI |
bgsave(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bgsave.
|
rx.Observable<Response> |
bgsaveObservable(List<String> args)
Deprecated.
use
rxBgsave(java.util.List<java.lang.String>) instead |
RedisAPI |
bitcount(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bitcount.
|
rx.Observable<Response> |
bitcountObservable(List<String> args)
Deprecated.
use
rxBitcount(java.util.List<java.lang.String>) instead |
RedisAPI |
bitfield(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bitfield.
|
rx.Observable<Response> |
bitfieldObservable(List<String> args)
Deprecated.
use
rxBitfield(java.util.List<java.lang.String>) instead |
RedisAPI |
bitop(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bitop.
|
rx.Observable<Response> |
bitopObservable(List<String> args)
Deprecated.
use
rxBitop(java.util.List<java.lang.String>) instead |
RedisAPI |
bitpos(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bitpos.
|
rx.Observable<Response> |
bitposObservable(List<String> args)
Deprecated.
use
rxBitpos(java.util.List<java.lang.String>) instead |
RedisAPI |
blpop(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command blpop.
|
rx.Observable<Response> |
blpopObservable(List<String> args)
Deprecated.
use
rxBlpop(java.util.List<java.lang.String>) instead |
RedisAPI |
brpop(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command brpop.
|
RedisAPI |
brpoplpush(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command brpoplpush.
|
rx.Observable<Response> |
brpoplpushObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
rx.Observable<Response> |
brpopObservable(List<String> args)
Deprecated.
use
rxBrpop(java.util.List<java.lang.String>) instead |
RedisAPI |
bzpopmax(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bzpopmax.
|
rx.Observable<Response> |
bzpopmaxObservable(List<String> args)
Deprecated.
use
rxBzpopmax(java.util.List<java.lang.String>) instead |
RedisAPI |
bzpopmin(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command bzpopmin.
|
rx.Observable<Response> |
bzpopminObservable(List<String> args)
Deprecated.
use
rxBzpopmin(java.util.List<java.lang.String>) instead |
RedisAPI |
client(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command client.
|
rx.Observable<Response> |
clientObservable(List<String> args)
Deprecated.
use
rxClient(java.util.List<java.lang.String>) instead |
void |
close() |
RedisAPI |
cluster(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command cluster.
|
rx.Observable<Response> |
clusterObservable(List<String> args)
Deprecated.
use
rxCluster(java.util.List<java.lang.String>) instead |
RedisAPI |
command(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command command.
|
rx.Observable<Response> |
commandObservable()
Deprecated.
use
rxCommand() instead |
RedisAPI |
config(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command config.
|
rx.Observable<Response> |
configObservable(List<String> args)
Deprecated.
use
rxConfig(java.util.List<java.lang.String>) instead |
RedisAPI |
dbsize(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command dbsize.
|
rx.Observable<Response> |
dbsizeObservable()
Deprecated.
use
rxDbsize() instead |
RedisAPI |
debug(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command debug.
|
rx.Observable<Response> |
debugObservable(List<String> args)
Deprecated.
use
rxDebug(java.util.List<java.lang.String>) instead |
RedisAPI |
decr(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command decr.
|
RedisAPI |
decrby(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command decrby.
|
rx.Observable<Response> |
decrbyObservable(String arg0,
String arg1)
Deprecated.
use
rxDecrby(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
decrObservable(String arg0)
Deprecated.
use
rxDecr(java.lang.String) instead |
RedisAPI |
del(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command del.
|
rx.Observable<Response> |
delObservable(List<String> args)
Deprecated.
use
rxDel(java.util.List<java.lang.String>) instead |
RedisAPI |
discard(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command discard.
|
rx.Observable<Response> |
discardObservable()
Deprecated.
use
rxDiscard() instead |
RedisAPI |
dump(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command dump.
|
rx.Observable<Response> |
dumpObservable(String arg0)
Deprecated.
use
rxDump(java.lang.String) instead |
RedisAPI |
echo(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command echo.
|
rx.Observable<Response> |
echoObservable(String arg0)
Deprecated.
use
rxEcho(java.lang.String) instead |
boolean |
equals(Object o) |
RedisAPI |
eval(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command eval.
|
rx.Observable<Response> |
evalObservable(List<String> args)
Deprecated.
use
rxEval(java.util.List<java.lang.String>) instead |
RedisAPI |
evalsha(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command evalsha.
|
rx.Observable<Response> |
evalshaObservable(List<String> args)
Deprecated.
use
rxEvalsha(java.util.List<java.lang.String>) instead |
RedisAPI |
exec(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command exec.
|
rx.Observable<Response> |
execObservable()
Deprecated.
use
rxExec() instead |
RedisAPI |
exists(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command exists.
|
rx.Observable<Response> |
existsObservable(List<String> args)
Deprecated.
use
rxExists(java.util.List<java.lang.String>) instead |
RedisAPI |
expire(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command expire.
|
RedisAPI |
expireat(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command expireat.
|
rx.Observable<Response> |
expireatObservable(String arg0,
String arg1)
Deprecated.
use
rxExpireat(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
expireObservable(String arg0,
String arg1)
Deprecated.
use
rxExpire(java.lang.String, java.lang.String) instead |
RedisAPI |
flushall(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command flushall.
|
rx.Observable<Response> |
flushallObservable(List<String> args)
Deprecated.
use
rxFlushall(java.util.List<java.lang.String>) instead |
RedisAPI |
flushdb(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command flushdb.
|
rx.Observable<Response> |
flushdbObservable(List<String> args)
Deprecated.
use
rxFlushdb(java.util.List<java.lang.String>) instead |
RedisAPI |
geoadd(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command geoadd.
|
rx.Observable<Response> |
geoaddObservable(List<String> args)
Deprecated.
use
rxGeoadd(java.util.List<java.lang.String>) instead |
RedisAPI |
geodist(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command geodist.
|
rx.Observable<Response> |
geodistObservable(List<String> args)
Deprecated.
use
rxGeodist(java.util.List<java.lang.String>) instead |
RedisAPI |
geohash(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command geohash.
|
rx.Observable<Response> |
geohashObservable(List<String> args)
Deprecated.
use
rxGeohash(java.util.List<java.lang.String>) instead |
RedisAPI |
geopos(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command geopos.
|
rx.Observable<Response> |
geoposObservable(List<String> args)
Deprecated.
use
rxGeopos(java.util.List<java.lang.String>) instead |
RedisAPI |
georadius(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command georadius.
|
RedisAPI |
georadiusbymember(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command georadiusbymember.
|
rx.Observable<Response> |
georadiusbymemberObservable(List<String> args)
Deprecated.
|
RedisAPI |
georadiusbymemberRo(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command georadiusbymemberRo.
|
rx.Observable<Response> |
georadiusbymemberRoObservable(List<String> args)
Deprecated.
|
rx.Observable<Response> |
georadiusObservable(List<String> args)
Deprecated.
use
rxGeoradius(java.util.List<java.lang.String>) instead |
RedisAPI |
georadiusRo(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command georadiusRo.
|
rx.Observable<Response> |
georadiusRoObservable(List<String> args)
Deprecated.
use
rxGeoradiusRo(java.util.List<java.lang.String>) instead |
RedisAPI |
get(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command get.
|
RedisAPI |
getbit(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command getbit.
|
rx.Observable<Response> |
getbitObservable(String arg0,
String arg1)
Deprecated.
use
rxGetbit(java.lang.String, java.lang.String) instead |
io.vertx.redis.client.RedisAPI |
getDelegate() |
rx.Observable<Response> |
getObservable(String arg0)
Deprecated.
use
rxGet(java.lang.String) instead |
RedisAPI |
getrange(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command getrange.
|
rx.Observable<Response> |
getrangeObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
getset(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command getset.
|
rx.Observable<Response> |
getsetObservable(String arg0,
String arg1)
Deprecated.
use
rxGetset(java.lang.String, java.lang.String) instead |
int |
hashCode() |
RedisAPI |
hdel(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hdel.
|
rx.Observable<Response> |
hdelObservable(List<String> args)
Deprecated.
use
rxHdel(java.util.List<java.lang.String>) instead |
RedisAPI |
hexists(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hexists.
|
rx.Observable<Response> |
hexistsObservable(String arg0,
String arg1)
Deprecated.
use
rxHexists(java.lang.String, java.lang.String) instead |
RedisAPI |
hget(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hget.
|
RedisAPI |
hgetall(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hgetall.
|
rx.Observable<Response> |
hgetallObservable(String arg0)
Deprecated.
use
rxHgetall(java.lang.String) instead |
rx.Observable<Response> |
hgetObservable(String arg0,
String arg1)
Deprecated.
use
rxHget(java.lang.String, java.lang.String) instead |
RedisAPI |
hincrby(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hincrby.
|
RedisAPI |
hincrbyfloat(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hincrbyfloat.
|
rx.Observable<Response> |
hincrbyfloatObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
rx.Observable<Response> |
hincrbyObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
hkeys(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hkeys.
|
rx.Observable<Response> |
hkeysObservable(String arg0)
Deprecated.
use
rxHkeys(java.lang.String) instead |
RedisAPI |
hlen(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hlen.
|
rx.Observable<Response> |
hlenObservable(String arg0)
Deprecated.
use
rxHlen(java.lang.String) instead |
RedisAPI |
hmget(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hmget.
|
rx.Observable<Response> |
hmgetObservable(List<String> args)
Deprecated.
use
rxHmget(java.util.List<java.lang.String>) instead |
RedisAPI |
hmset(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hmset.
|
rx.Observable<Response> |
hmsetObservable(List<String> args)
Deprecated.
use
rxHmset(java.util.List<java.lang.String>) instead |
RedisAPI |
host(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command host.
|
rx.Observable<Response> |
hostObservable(List<String> args)
Deprecated.
use
rxHost(java.util.List<java.lang.String>) instead |
RedisAPI |
hscan(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hscan.
|
rx.Observable<Response> |
hscanObservable(List<String> args)
Deprecated.
use
rxHscan(java.util.List<java.lang.String>) instead |
RedisAPI |
hset(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hset.
|
RedisAPI |
hsetnx(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hsetnx.
|
rx.Observable<Response> |
hsetnxObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
rx.Observable<Response> |
hsetObservable(List<String> args)
Deprecated.
use
rxHset(java.util.List<java.lang.String>) instead |
RedisAPI |
hstrlen(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hstrlen.
|
rx.Observable<Response> |
hstrlenObservable(String arg0,
String arg1)
Deprecated.
use
rxHstrlen(java.lang.String, java.lang.String) instead |
RedisAPI |
hvals(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command hvals.
|
rx.Observable<Response> |
hvalsObservable(String arg0)
Deprecated.
use
rxHvals(java.lang.String) instead |
RedisAPI |
incr(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command incr.
|
RedisAPI |
incrby(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command incrby.
|
RedisAPI |
incrbyfloat(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command incrbyfloat.
|
rx.Observable<Response> |
incrbyfloatObservable(String arg0,
String arg1)
Deprecated.
|
rx.Observable<Response> |
incrbyObservable(String arg0,
String arg1)
Deprecated.
use
rxIncrby(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
incrObservable(String arg0)
Deprecated.
use
rxIncr(java.lang.String) instead |
RedisAPI |
info(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command info.
|
rx.Observable<Response> |
infoObservable(List<String> args)
Deprecated.
use
rxInfo(java.util.List<java.lang.String>) instead |
RedisAPI |
keys(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command keys.
|
rx.Observable<Response> |
keysObservable(String arg0)
Deprecated.
use
rxKeys(java.lang.String) instead |
RedisAPI |
lastsave(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lastsave.
|
rx.Observable<Response> |
lastsaveObservable()
Deprecated.
use
rxLastsave() instead |
RedisAPI |
latency(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command latency.
|
rx.Observable<Response> |
latencyObservable(List<String> args)
Deprecated.
use
rxLatency(java.util.List<java.lang.String>) instead |
RedisAPI |
lindex(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lindex.
|
rx.Observable<Response> |
lindexObservable(String arg0,
String arg1)
Deprecated.
use
rxLindex(java.lang.String, java.lang.String) instead |
RedisAPI |
linsert(String arg0,
String arg1,
String arg2,
String arg3,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command linsert.
|
rx.Observable<Response> |
linsertObservable(String arg0,
String arg1,
String arg2,
String arg3)
Deprecated.
|
RedisAPI |
llen(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command llen.
|
rx.Observable<Response> |
llenObservable(String arg0)
Deprecated.
use
rxLlen(java.lang.String) instead |
RedisAPI |
lolwut(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lolwut.
|
rx.Observable<Response> |
lolwutObservable(List<String> args)
Deprecated.
use
rxLolwut(java.util.List<java.lang.String>) instead |
RedisAPI |
lpop(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lpop.
|
rx.Observable<Response> |
lpopObservable(String arg0)
Deprecated.
use
rxLpop(java.lang.String) instead |
RedisAPI |
lpush(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lpush.
|
rx.Observable<Response> |
lpushObservable(List<String> args)
Deprecated.
use
rxLpush(java.util.List<java.lang.String>) instead |
RedisAPI |
lpushx(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lpushx.
|
rx.Observable<Response> |
lpushxObservable(List<String> args)
Deprecated.
use
rxLpushx(java.util.List<java.lang.String>) instead |
RedisAPI |
lrange(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lrange.
|
rx.Observable<Response> |
lrangeObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
lrem(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lrem.
|
rx.Observable<Response> |
lremObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
lset(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command lset.
|
rx.Observable<Response> |
lsetObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
ltrim(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command ltrim.
|
rx.Observable<Response> |
ltrimObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
memory(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command memory.
|
rx.Observable<Response> |
memoryObservable(List<String> args)
Deprecated.
use
rxMemory(java.util.List<java.lang.String>) instead |
RedisAPI |
mget(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command mget.
|
rx.Observable<Response> |
mgetObservable(List<String> args)
Deprecated.
use
rxMget(java.util.List<java.lang.String>) instead |
RedisAPI |
migrate(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command migrate.
|
rx.Observable<Response> |
migrateObservable(List<String> args)
Deprecated.
use
rxMigrate(java.util.List<java.lang.String>) instead |
RedisAPI |
module(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command module.
|
rx.Observable<Response> |
moduleObservable(List<String> args)
Deprecated.
use
rxModule(java.util.List<java.lang.String>) instead |
RedisAPI |
monitor(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command monitor.
|
rx.Observable<Response> |
monitorObservable()
Deprecated.
use
rxMonitor() instead |
RedisAPI |
move(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command move.
|
rx.Observable<Response> |
moveObservable(String arg0,
String arg1)
Deprecated.
use
rxMove(java.lang.String, java.lang.String) instead |
RedisAPI |
mset(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command mset.
|
RedisAPI |
msetnx(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command msetnx.
|
rx.Observable<Response> |
msetnxObservable(List<String> args)
Deprecated.
use
rxMsetnx(java.util.List<java.lang.String>) instead |
rx.Observable<Response> |
msetObservable(List<String> args)
Deprecated.
use
rxMset(java.util.List<java.lang.String>) instead |
RedisAPI |
multi(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command multi.
|
rx.Observable<Response> |
multiObservable()
Deprecated.
use
rxMulti() instead |
static RedisAPI |
newInstance(io.vertx.redis.client.RedisAPI arg) |
RedisAPI |
object(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command object.
|
rx.Observable<Response> |
objectObservable(List<String> args)
Deprecated.
use
rxObject(java.util.List<java.lang.String>) instead |
RedisAPI |
persist(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command persist.
|
rx.Observable<Response> |
persistObservable(String arg0)
Deprecated.
use
rxPersist(java.lang.String) instead |
RedisAPI |
pexpire(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pexpire.
|
RedisAPI |
pexpireat(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pexpireat.
|
rx.Observable<Response> |
pexpireatObservable(String arg0,
String arg1)
Deprecated.
use
rxPexpireat(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
pexpireObservable(String arg0,
String arg1)
Deprecated.
use
rxPexpire(java.lang.String, java.lang.String) instead |
RedisAPI |
pfadd(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pfadd.
|
rx.Observable<Response> |
pfaddObservable(List<String> args)
Deprecated.
use
rxPfadd(java.util.List<java.lang.String>) instead |
RedisAPI |
pfcount(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pfcount.
|
rx.Observable<Response> |
pfcountObservable(List<String> args)
Deprecated.
use
rxPfcount(java.util.List<java.lang.String>) instead |
RedisAPI |
pfdebug(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pfdebug.
|
rx.Observable<Response> |
pfdebugObservable(List<String> args)
Deprecated.
use
rxPfdebug(java.util.List<java.lang.String>) instead |
RedisAPI |
pfmerge(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pfmerge.
|
rx.Observable<Response> |
pfmergeObservable(List<String> args)
Deprecated.
use
rxPfmerge(java.util.List<java.lang.String>) instead |
RedisAPI |
pfselftest(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pfselftest.
|
rx.Observable<Response> |
pfselftestObservable()
Deprecated.
use
rxPfselftest() instead |
RedisAPI |
ping(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command ping.
|
rx.Observable<Response> |
pingObservable(List<String> args)
Deprecated.
use
rxPing(java.util.List<java.lang.String>) instead |
RedisAPI |
post(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command post.
|
rx.Observable<Response> |
postObservable(List<String> args)
Deprecated.
use
rxPost(java.util.List<java.lang.String>) instead |
RedisAPI |
psetex(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command psetex.
|
rx.Observable<Response> |
psetexObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
psubscribe(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command psubscribe.
|
rx.Observable<Response> |
psubscribeObservable(List<String> args)
Deprecated.
use
rxPsubscribe(java.util.List<java.lang.String>) instead |
RedisAPI |
psync(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command psync.
|
rx.Observable<Response> |
psyncObservable(String arg0,
String arg1)
Deprecated.
use
rxPsync(java.lang.String, java.lang.String) instead |
RedisAPI |
pttl(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pttl.
|
rx.Observable<Response> |
pttlObservable(String arg0)
Deprecated.
use
rxPttl(java.lang.String) instead |
RedisAPI |
publish(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command publish.
|
rx.Observable<Response> |
publishObservable(String arg0,
String arg1)
Deprecated.
use
rxPublish(java.lang.String, java.lang.String) instead |
RedisAPI |
pubsub(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command pubsub.
|
rx.Observable<Response> |
pubsubObservable(List<String> args)
Deprecated.
use
rxPubsub(java.util.List<java.lang.String>) instead |
RedisAPI |
punsubscribe(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command punsubscribe.
|
rx.Observable<Response> |
punsubscribeObservable(List<String> args)
Deprecated.
use
rxPunsubscribe(java.util.List<java.lang.String>) instead |
RedisAPI |
randomkey(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command randomkey.
|
rx.Observable<Response> |
randomkeyObservable()
Deprecated.
use
rxRandomkey() instead |
RedisAPI |
readonly(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command readonly.
|
rx.Observable<Response> |
readonlyObservable()
Deprecated.
use
rxReadonly() instead |
RedisAPI |
readwrite(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command readwrite.
|
rx.Observable<Response> |
readwriteObservable()
Deprecated.
use
rxReadwrite() instead |
RedisAPI |
rename(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command rename.
|
RedisAPI |
renamenx(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command renamenx.
|
rx.Observable<Response> |
renamenxObservable(String arg0,
String arg1)
Deprecated.
use
rxRenamenx(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
renameObservable(String arg0,
String arg1)
Deprecated.
use
rxRename(java.lang.String, java.lang.String) instead |
RedisAPI |
replconf(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command replconf.
|
rx.Observable<Response> |
replconfObservable(List<String> args)
Deprecated.
use
rxReplconf(java.util.List<java.lang.String>) instead |
RedisAPI |
replicaof(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command replicaof.
|
rx.Observable<Response> |
replicaofObservable(String arg0,
String arg1)
Deprecated.
use
rxReplicaof(java.lang.String, java.lang.String) instead |
RedisAPI |
restore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command restore.
|
RedisAPI |
restoreAsking(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command restoreAsking.
|
rx.Observable<Response> |
restoreAskingObservable(List<String> args)
Deprecated.
|
rx.Observable<Response> |
restoreObservable(List<String> args)
Deprecated.
use
rxRestore(java.util.List<java.lang.String>) instead |
RedisAPI |
role(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command role.
|
rx.Observable<Response> |
roleObservable()
Deprecated.
use
rxRole() instead |
RedisAPI |
rpop(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command rpop.
|
RedisAPI |
rpoplpush(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command rpoplpush.
|
rx.Observable<Response> |
rpoplpushObservable(String arg0,
String arg1)
Deprecated.
use
rxRpoplpush(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
rpopObservable(String arg0)
Deprecated.
use
rxRpop(java.lang.String) instead |
RedisAPI |
rpush(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command rpush.
|
rx.Observable<Response> |
rpushObservable(List<String> args)
Deprecated.
use
rxRpush(java.util.List<java.lang.String>) instead |
RedisAPI |
rpushx(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command rpushx.
|
rx.Observable<Response> |
rpushxObservable(List<String> args)
Deprecated.
use
rxRpushx(java.util.List<java.lang.String>) instead |
rx.Single<Response> |
rxAppend(String arg0,
String arg1)
Redis command append.
|
rx.Single<Response> |
rxAsking()
Redis command asking.
|
rx.Single<Response> |
rxAuth(String arg0)
Redis command auth.
|
rx.Single<Response> |
rxBgrewriteaof()
Redis command bgrewriteaof.
|
rx.Single<Response> |
rxBgsave(List<String> args)
Redis command bgsave.
|
rx.Single<Response> |
rxBitcount(List<String> args)
Redis command bitcount.
|
rx.Single<Response> |
rxBitfield(List<String> args)
Redis command bitfield.
|
rx.Single<Response> |
rxBitop(List<String> args)
Redis command bitop.
|
rx.Single<Response> |
rxBitpos(List<String> args)
Redis command bitpos.
|
rx.Single<Response> |
rxBlpop(List<String> args)
Redis command blpop.
|
rx.Single<Response> |
rxBrpop(List<String> args)
Redis command brpop.
|
rx.Single<Response> |
rxBrpoplpush(String arg0,
String arg1,
String arg2)
Redis command brpoplpush.
|
rx.Single<Response> |
rxBzpopmax(List<String> args)
Redis command bzpopmax.
|
rx.Single<Response> |
rxBzpopmin(List<String> args)
Redis command bzpopmin.
|
rx.Single<Response> |
rxClient(List<String> args)
Redis command client.
|
rx.Single<Response> |
rxCluster(List<String> args)
Redis command cluster.
|
rx.Single<Response> |
rxCommand()
Redis command command.
|
rx.Single<Response> |
rxConfig(List<String> args)
Redis command config.
|
rx.Single<Response> |
rxDbsize()
Redis command dbsize.
|
rx.Single<Response> |
rxDebug(List<String> args)
Redis command debug.
|
rx.Single<Response> |
rxDecr(String arg0)
Redis command decr.
|
rx.Single<Response> |
rxDecrby(String arg0,
String arg1)
Redis command decrby.
|
rx.Single<Response> |
rxDel(List<String> args)
Redis command del.
|
rx.Single<Response> |
rxDiscard()
Redis command discard.
|
rx.Single<Response> |
rxDump(String arg0)
Redis command dump.
|
rx.Single<Response> |
rxEcho(String arg0)
Redis command echo.
|
rx.Single<Response> |
rxEval(List<String> args)
Redis command eval.
|
rx.Single<Response> |
rxEvalsha(List<String> args)
Redis command evalsha.
|
rx.Single<Response> |
rxExec()
Redis command exec.
|
rx.Single<Response> |
rxExists(List<String> args)
Redis command exists.
|
rx.Single<Response> |
rxExpire(String arg0,
String arg1)
Redis command expire.
|
rx.Single<Response> |
rxExpireat(String arg0,
String arg1)
Redis command expireat.
|
rx.Single<Response> |
rxFlushall(List<String> args)
Redis command flushall.
|
rx.Single<Response> |
rxFlushdb(List<String> args)
Redis command flushdb.
|
rx.Single<Response> |
rxGeoadd(List<String> args)
Redis command geoadd.
|
rx.Single<Response> |
rxGeodist(List<String> args)
Redis command geodist.
|
rx.Single<Response> |
rxGeohash(List<String> args)
Redis command geohash.
|
rx.Single<Response> |
rxGeopos(List<String> args)
Redis command geopos.
|
rx.Single<Response> |
rxGeoradius(List<String> args)
Redis command georadius.
|
rx.Single<Response> |
rxGeoradiusbymember(List<String> args)
Redis command georadiusbymember.
|
rx.Single<Response> |
rxGeoradiusbymemberRo(List<String> args)
Redis command georadiusbymemberRo.
|
rx.Single<Response> |
rxGeoradiusRo(List<String> args)
Redis command georadiusRo.
|
rx.Single<Response> |
rxGet(String arg0)
Redis command get.
|
rx.Single<Response> |
rxGetbit(String arg0,
String arg1)
Redis command getbit.
|
rx.Single<Response> |
rxGetrange(String arg0,
String arg1,
String arg2)
Redis command getrange.
|
rx.Single<Response> |
rxGetset(String arg0,
String arg1)
Redis command getset.
|
rx.Single<Response> |
rxHdel(List<String> args)
Redis command hdel.
|
rx.Single<Response> |
rxHexists(String arg0,
String arg1)
Redis command hexists.
|
rx.Single<Response> |
rxHget(String arg0,
String arg1)
Redis command hget.
|
rx.Single<Response> |
rxHgetall(String arg0)
Redis command hgetall.
|
rx.Single<Response> |
rxHincrby(String arg0,
String arg1,
String arg2)
Redis command hincrby.
|
rx.Single<Response> |
rxHincrbyfloat(String arg0,
String arg1,
String arg2)
Redis command hincrbyfloat.
|
rx.Single<Response> |
rxHkeys(String arg0)
Redis command hkeys.
|
rx.Single<Response> |
rxHlen(String arg0)
Redis command hlen.
|
rx.Single<Response> |
rxHmget(List<String> args)
Redis command hmget.
|
rx.Single<Response> |
rxHmset(List<String> args)
Redis command hmset.
|
rx.Single<Response> |
rxHost(List<String> args)
Redis command host.
|
rx.Single<Response> |
rxHscan(List<String> args)
Redis command hscan.
|
rx.Single<Response> |
rxHset(List<String> args)
Redis command hset.
|
rx.Single<Response> |
rxHsetnx(String arg0,
String arg1,
String arg2)
Redis command hsetnx.
|
rx.Single<Response> |
rxHstrlen(String arg0,
String arg1)
Redis command hstrlen.
|
rx.Single<Response> |
rxHvals(String arg0)
Redis command hvals.
|
rx.Single<Response> |
rxIncr(String arg0)
Redis command incr.
|
rx.Single<Response> |
rxIncrby(String arg0,
String arg1)
Redis command incrby.
|
rx.Single<Response> |
rxIncrbyfloat(String arg0,
String arg1)
Redis command incrbyfloat.
|
rx.Single<Response> |
rxInfo(List<String> args)
Redis command info.
|
rx.Single<Response> |
rxKeys(String arg0)
Redis command keys.
|
rx.Single<Response> |
rxLastsave()
Redis command lastsave.
|
rx.Single<Response> |
rxLatency(List<String> args)
Redis command latency.
|
rx.Single<Response> |
rxLindex(String arg0,
String arg1)
Redis command lindex.
|
rx.Single<Response> |
rxLinsert(String arg0,
String arg1,
String arg2,
String arg3)
Redis command linsert.
|
rx.Single<Response> |
rxLlen(String arg0)
Redis command llen.
|
rx.Single<Response> |
rxLolwut(List<String> args)
Redis command lolwut.
|
rx.Single<Response> |
rxLpop(String arg0)
Redis command lpop.
|
rx.Single<Response> |
rxLpush(List<String> args)
Redis command lpush.
|
rx.Single<Response> |
rxLpushx(List<String> args)
Redis command lpushx.
|
rx.Single<Response> |
rxLrange(String arg0,
String arg1,
String arg2)
Redis command lrange.
|
rx.Single<Response> |
rxLrem(String arg0,
String arg1,
String arg2)
Redis command lrem.
|
rx.Single<Response> |
rxLset(String arg0,
String arg1,
String arg2)
Redis command lset.
|
rx.Single<Response> |
rxLtrim(String arg0,
String arg1,
String arg2)
Redis command ltrim.
|
rx.Single<Response> |
rxMemory(List<String> args)
Redis command memory.
|
rx.Single<Response> |
rxMget(List<String> args)
Redis command mget.
|
rx.Single<Response> |
rxMigrate(List<String> args)
Redis command migrate.
|
rx.Single<Response> |
rxModule(List<String> args)
Redis command module.
|
rx.Single<Response> |
rxMonitor()
Redis command monitor.
|
rx.Single<Response> |
rxMove(String arg0,
String arg1)
Redis command move.
|
rx.Single<Response> |
rxMset(List<String> args)
Redis command mset.
|
rx.Single<Response> |
rxMsetnx(List<String> args)
Redis command msetnx.
|
rx.Single<Response> |
rxMulti()
Redis command multi.
|
rx.Single<Response> |
rxObject(List<String> args)
Redis command object.
|
rx.Single<Response> |
rxPersist(String arg0)
Redis command persist.
|
rx.Single<Response> |
rxPexpire(String arg0,
String arg1)
Redis command pexpire.
|
rx.Single<Response> |
rxPexpireat(String arg0,
String arg1)
Redis command pexpireat.
|
rx.Single<Response> |
rxPfadd(List<String> args)
Redis command pfadd.
|
rx.Single<Response> |
rxPfcount(List<String> args)
Redis command pfcount.
|
rx.Single<Response> |
rxPfdebug(List<String> args)
Redis command pfdebug.
|
rx.Single<Response> |
rxPfmerge(List<String> args)
Redis command pfmerge.
|
rx.Single<Response> |
rxPfselftest()
Redis command pfselftest.
|
rx.Single<Response> |
rxPing(List<String> args)
Redis command ping.
|
rx.Single<Response> |
rxPost(List<String> args)
Redis command post.
|
rx.Single<Response> |
rxPsetex(String arg0,
String arg1,
String arg2)
Redis command psetex.
|
rx.Single<Response> |
rxPsubscribe(List<String> args)
Redis command psubscribe.
|
rx.Single<Response> |
rxPsync(String arg0,
String arg1)
Redis command psync.
|
rx.Single<Response> |
rxPttl(String arg0)
Redis command pttl.
|
rx.Single<Response> |
rxPublish(String arg0,
String arg1)
Redis command publish.
|
rx.Single<Response> |
rxPubsub(List<String> args)
Redis command pubsub.
|
rx.Single<Response> |
rxPunsubscribe(List<String> args)
Redis command punsubscribe.
|
rx.Single<Response> |
rxRandomkey()
Redis command randomkey.
|
rx.Single<Response> |
rxReadonly()
Redis command readonly.
|
rx.Single<Response> |
rxReadwrite()
Redis command readwrite.
|
rx.Single<Response> |
rxRename(String arg0,
String arg1)
Redis command rename.
|
rx.Single<Response> |
rxRenamenx(String arg0,
String arg1)
Redis command renamenx.
|
rx.Single<Response> |
rxReplconf(List<String> args)
Redis command replconf.
|
rx.Single<Response> |
rxReplicaof(String arg0,
String arg1)
Redis command replicaof.
|
rx.Single<Response> |
rxRestore(List<String> args)
Redis command restore.
|
rx.Single<Response> |
rxRestoreAsking(List<String> args)
Redis command restoreAsking.
|
rx.Single<Response> |
rxRole()
Redis command role.
|
rx.Single<Response> |
rxRpop(String arg0)
Redis command rpop.
|
rx.Single<Response> |
rxRpoplpush(String arg0,
String arg1)
Redis command rpoplpush.
|
rx.Single<Response> |
rxRpush(List<String> args)
Redis command rpush.
|
rx.Single<Response> |
rxRpushx(List<String> args)
Redis command rpushx.
|
rx.Single<Response> |
rxSadd(List<String> args)
Redis command sadd.
|
rx.Single<Response> |
rxSave()
Redis command save.
|
rx.Single<Response> |
rxScan(List<String> args)
Redis command scan.
|
rx.Single<Response> |
rxScard(String arg0)
Redis command scard.
|
rx.Single<Response> |
rxScript(List<String> args)
Redis command script.
|
rx.Single<Response> |
rxSdiff(List<String> args)
Redis command sdiff.
|
rx.Single<Response> |
rxSdiffstore(List<String> args)
Redis command sdiffstore.
|
rx.Single<Response> |
rxSelect(String arg0)
Redis command select.
|
rx.Single<Response> |
rxSet(List<String> args)
Redis command set.
|
rx.Single<Response> |
rxSetbit(String arg0,
String arg1,
String arg2)
Redis command setbit.
|
rx.Single<Response> |
rxSetex(String arg0,
String arg1,
String arg2)
Redis command setex.
|
rx.Single<Response> |
rxSetnx(String arg0,
String arg1)
Redis command setnx.
|
rx.Single<Response> |
rxSetrange(String arg0,
String arg1,
String arg2)
Redis command setrange.
|
rx.Single<Response> |
rxShutdown(List<String> args)
Redis command shutdown.
|
rx.Single<Response> |
rxSinter(List<String> args)
Redis command sinter.
|
rx.Single<Response> |
rxSinterstore(List<String> args)
Redis command sinterstore.
|
rx.Single<Response> |
rxSismember(String arg0,
String arg1)
Redis command sismember.
|
rx.Single<Response> |
rxSlaveof(String arg0,
String arg1)
Redis command slaveof.
|
rx.Single<Response> |
rxSlowlog(List<String> args)
Redis command slowlog.
|
rx.Single<Response> |
rxSmembers(String arg0)
Redis command smembers.
|
rx.Single<Response> |
rxSmove(String arg0,
String arg1,
String arg2)
Redis command smove.
|
rx.Single<Response> |
rxSort(List<String> args)
Redis command sort.
|
rx.Single<Response> |
rxSpop(List<String> args)
Redis command spop.
|
rx.Single<Response> |
rxSrandmember(List<String> args)
Redis command srandmember.
|
rx.Single<Response> |
rxSrem(List<String> args)
Redis command srem.
|
rx.Single<Response> |
rxSscan(List<String> args)
Redis command sscan.
|
rx.Single<Response> |
rxStrlen(String arg0)
Redis command strlen.
|
rx.Single<Response> |
rxSubscribe(List<String> args)
Redis command subscribe.
|
rx.Single<Response> |
rxSubstr(String arg0,
String arg1,
String arg2)
Redis command substr.
|
rx.Single<Response> |
rxSunion(List<String> args)
Redis command sunion.
|
rx.Single<Response> |
rxSunionstore(List<String> args)
Redis command sunionstore.
|
rx.Single<Response> |
rxSwapdb(String arg0,
String arg1)
Redis command swapdb.
|
rx.Single<Response> |
rxSync()
Redis command sync.
|
rx.Single<Response> |
rxTime()
Redis command time.
|
rx.Single<Response> |
rxTouch(List<String> args)
Redis command touch.
|
rx.Single<Response> |
rxTtl(String arg0)
Redis command ttl.
|
rx.Single<Response> |
rxType(String arg0)
Redis command type.
|
rx.Single<Response> |
rxUnlink(List<String> args)
Redis command unlink.
|
rx.Single<Response> |
rxUnsubscribe(List<String> args)
Redis command unsubscribe.
|
rx.Single<Response> |
rxUnwatch()
Redis command unwatch.
|
rx.Single<Response> |
rxWait(String arg0,
String arg1)
Redis command wait.
|
rx.Single<Response> |
rxWatch(List<String> args)
Redis command watch.
|
rx.Single<Response> |
rxXack(List<String> args)
Redis command xack.
|
rx.Single<Response> |
rxXadd(List<String> args)
Redis command xadd.
|
rx.Single<Response> |
rxXclaim(List<String> args)
Redis command xclaim.
|
rx.Single<Response> |
rxXdel(List<String> args)
Redis command xdel.
|
rx.Single<Response> |
rxXgroup(List<String> args)
Redis command xgroup.
|
rx.Single<Response> |
rxXinfo(List<String> args)
Redis command xinfo.
|
rx.Single<Response> |
rxXlen(String arg0)
Redis command xlen.
|
rx.Single<Response> |
rxXpending(List<String> args)
Redis command xpending.
|
rx.Single<Response> |
rxXrange(List<String> args)
Redis command xrange.
|
rx.Single<Response> |
rxXread(List<String> args)
Redis command xread.
|
rx.Single<Response> |
rxXreadgroup(List<String> args)
Redis command xreadgroup.
|
rx.Single<Response> |
rxXrevrange(List<String> args)
Redis command xrevrange.
|
rx.Single<Response> |
rxXsetid(String arg0,
String arg1)
Redis command xsetid.
|
rx.Single<Response> |
rxXtrim(List<String> args)
Redis command xtrim.
|
rx.Single<Response> |
rxZadd(List<String> args)
Redis command zadd.
|
rx.Single<Response> |
rxZcard(String arg0)
Redis command zcard.
|
rx.Single<Response> |
rxZcount(String arg0,
String arg1,
String arg2)
Redis command zcount.
|
rx.Single<Response> |
rxZincrby(String arg0,
String arg1,
String arg2)
Redis command zincrby.
|
rx.Single<Response> |
rxZinterstore(List<String> args)
Redis command zinterstore.
|
rx.Single<Response> |
rxZlexcount(String arg0,
String arg1,
String arg2)
Redis command zlexcount.
|
rx.Single<Response> |
rxZpopmax(List<String> args)
Redis command zpopmax.
|
rx.Single<Response> |
rxZpopmin(List<String> args)
Redis command zpopmin.
|
rx.Single<Response> |
rxZrange(List<String> args)
Redis command zrange.
|
rx.Single<Response> |
rxZrangebylex(List<String> args)
Redis command zrangebylex.
|
rx.Single<Response> |
rxZrangebyscore(List<String> args)
Redis command zrangebyscore.
|
rx.Single<Response> |
rxZrank(String arg0,
String arg1)
Redis command zrank.
|
rx.Single<Response> |
rxZrem(List<String> args)
Redis command zrem.
|
rx.Single<Response> |
rxZremrangebylex(String arg0,
String arg1,
String arg2)
Redis command zremrangebylex.
|
rx.Single<Response> |
rxZremrangebyrank(String arg0,
String arg1,
String arg2)
Redis command zremrangebyrank.
|
rx.Single<Response> |
rxZremrangebyscore(String arg0,
String arg1,
String arg2)
Redis command zremrangebyscore.
|
rx.Single<Response> |
rxZrevrange(List<String> args)
Redis command zrevrange.
|
rx.Single<Response> |
rxZrevrangebylex(List<String> args)
Redis command zrevrangebylex.
|
rx.Single<Response> |
rxZrevrangebyscore(List<String> args)
Redis command zrevrangebyscore.
|
rx.Single<Response> |
rxZrevrank(String arg0,
String arg1)
Redis command zrevrank.
|
rx.Single<Response> |
rxZscan(List<String> args)
Redis command zscan.
|
rx.Single<Response> |
rxZscore(String arg0,
String arg1)
Redis command zscore.
|
rx.Single<Response> |
rxZunionstore(List<String> args)
Redis command zunionstore.
|
RedisAPI |
sadd(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sadd.
|
rx.Observable<Response> |
saddObservable(List<String> args)
Deprecated.
use
rxSadd(java.util.List<java.lang.String>) instead |
RedisAPI |
save(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command save.
|
rx.Observable<Response> |
saveObservable()
Deprecated.
use
rxSave() instead |
RedisAPI |
scan(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command scan.
|
rx.Observable<Response> |
scanObservable(List<String> args)
Deprecated.
use
rxScan(java.util.List<java.lang.String>) instead |
RedisAPI |
scard(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command scard.
|
rx.Observable<Response> |
scardObservable(String arg0)
Deprecated.
use
rxScard(java.lang.String) instead |
RedisAPI |
script(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command script.
|
rx.Observable<Response> |
scriptObservable(List<String> args)
Deprecated.
use
rxScript(java.util.List<java.lang.String>) instead |
RedisAPI |
sdiff(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sdiff.
|
rx.Observable<Response> |
sdiffObservable(List<String> args)
Deprecated.
use
rxSdiff(java.util.List<java.lang.String>) instead |
RedisAPI |
sdiffstore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sdiffstore.
|
rx.Observable<Response> |
sdiffstoreObservable(List<String> args)
Deprecated.
use
rxSdiffstore(java.util.List<java.lang.String>) instead |
RedisAPI |
select(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command select.
|
rx.Observable<Response> |
selectObservable(String arg0)
Deprecated.
use
rxSelect(java.lang.String) instead |
RedisAPI |
set(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command set.
|
RedisAPI |
setbit(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command setbit.
|
rx.Observable<Response> |
setbitObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
setex(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command setex.
|
rx.Observable<Response> |
setexObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
setnx(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command setnx.
|
rx.Observable<Response> |
setnxObservable(String arg0,
String arg1)
Deprecated.
use
rxSetnx(java.lang.String, java.lang.String) instead |
rx.Observable<Response> |
setObservable(List<String> args)
Deprecated.
use
rxSet(java.util.List<java.lang.String>) instead |
RedisAPI |
setrange(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command setrange.
|
rx.Observable<Response> |
setrangeObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
shutdown(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command shutdown.
|
rx.Observable<Response> |
shutdownObservable(List<String> args)
Deprecated.
use
rxShutdown(java.util.List<java.lang.String>) instead |
RedisAPI |
sinter(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sinter.
|
rx.Observable<Response> |
sinterObservable(List<String> args)
Deprecated.
use
rxSinter(java.util.List<java.lang.String>) instead |
RedisAPI |
sinterstore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sinterstore.
|
rx.Observable<Response> |
sinterstoreObservable(List<String> args)
Deprecated.
use
rxSinterstore(java.util.List<java.lang.String>) instead |
RedisAPI |
sismember(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sismember.
|
rx.Observable<Response> |
sismemberObservable(String arg0,
String arg1)
Deprecated.
use
rxSismember(java.lang.String, java.lang.String) instead |
RedisAPI |
slaveof(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command slaveof.
|
rx.Observable<Response> |
slaveofObservable(String arg0,
String arg1)
Deprecated.
use
rxSlaveof(java.lang.String, java.lang.String) instead |
RedisAPI |
slowlog(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command slowlog.
|
rx.Observable<Response> |
slowlogObservable(List<String> args)
Deprecated.
use
rxSlowlog(java.util.List<java.lang.String>) instead |
RedisAPI |
smembers(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command smembers.
|
rx.Observable<Response> |
smembersObservable(String arg0)
Deprecated.
use
rxSmembers(java.lang.String) instead |
RedisAPI |
smove(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command smove.
|
rx.Observable<Response> |
smoveObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
sort(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sort.
|
rx.Observable<Response> |
sortObservable(List<String> args)
Deprecated.
use
rxSort(java.util.List<java.lang.String>) instead |
RedisAPI |
spop(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command spop.
|
rx.Observable<Response> |
spopObservable(List<String> args)
Deprecated.
use
rxSpop(java.util.List<java.lang.String>) instead |
RedisAPI |
srandmember(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command srandmember.
|
rx.Observable<Response> |
srandmemberObservable(List<String> args)
Deprecated.
use
rxSrandmember(java.util.List<java.lang.String>) instead |
RedisAPI |
srem(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command srem.
|
rx.Observable<Response> |
sremObservable(List<String> args)
Deprecated.
use
rxSrem(java.util.List<java.lang.String>) instead |
RedisAPI |
sscan(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sscan.
|
rx.Observable<Response> |
sscanObservable(List<String> args)
Deprecated.
use
rxSscan(java.util.List<java.lang.String>) instead |
RedisAPI |
strlen(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command strlen.
|
rx.Observable<Response> |
strlenObservable(String arg0)
Deprecated.
use
rxStrlen(java.lang.String) instead |
RedisAPI |
subscribe(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command subscribe.
|
rx.Observable<Response> |
subscribeObservable(List<String> args)
Deprecated.
use
rxSubscribe(java.util.List<java.lang.String>) instead |
RedisAPI |
substr(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command substr.
|
rx.Observable<Response> |
substrObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
sunion(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sunion.
|
rx.Observable<Response> |
sunionObservable(List<String> args)
Deprecated.
use
rxSunion(java.util.List<java.lang.String>) instead |
RedisAPI |
sunionstore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sunionstore.
|
rx.Observable<Response> |
sunionstoreObservable(List<String> args)
Deprecated.
use
rxSunionstore(java.util.List<java.lang.String>) instead |
RedisAPI |
swapdb(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command swapdb.
|
rx.Observable<Response> |
swapdbObservable(String arg0,
String arg1)
Deprecated.
use
rxSwapdb(java.lang.String, java.lang.String) instead |
RedisAPI |
sync(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command sync.
|
rx.Observable<Response> |
syncObservable()
Deprecated.
use
rxSync() instead |
RedisAPI |
time(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command time.
|
rx.Observable<Response> |
timeObservable()
Deprecated.
use
rxTime() instead |
String |
toString() |
RedisAPI |
touch(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command touch.
|
rx.Observable<Response> |
touchObservable(List<String> args)
Deprecated.
use
rxTouch(java.util.List<java.lang.String>) instead |
RedisAPI |
ttl(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command ttl.
|
rx.Observable<Response> |
ttlObservable(String arg0)
Deprecated.
use
rxTtl(java.lang.String) instead |
RedisAPI |
type(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command type.
|
rx.Observable<Response> |
typeObservable(String arg0)
Deprecated.
use
rxType(java.lang.String) instead |
RedisAPI |
unlink(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command unlink.
|
rx.Observable<Response> |
unlinkObservable(List<String> args)
Deprecated.
use
rxUnlink(java.util.List<java.lang.String>) instead |
RedisAPI |
unsubscribe(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command unsubscribe.
|
rx.Observable<Response> |
unsubscribeObservable(List<String> args)
Deprecated.
use
rxUnsubscribe(java.util.List<java.lang.String>) instead |
RedisAPI |
unwatch(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command unwatch.
|
rx.Observable<Response> |
unwatchObservable()
Deprecated.
use
rxUnwatch() instead |
RedisAPI |
wait(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command wait.
|
rx.Observable<Response> |
waitObservable(String arg0,
String arg1)
Deprecated.
use
rxWait(java.lang.String, java.lang.String) instead |
RedisAPI |
watch(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command watch.
|
rx.Observable<Response> |
watchObservable(List<String> args)
Deprecated.
use
rxWatch(java.util.List<java.lang.String>) instead |
RedisAPI |
xack(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xack.
|
rx.Observable<Response> |
xackObservable(List<String> args)
Deprecated.
use
rxXack(java.util.List<java.lang.String>) instead |
RedisAPI |
xadd(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xadd.
|
rx.Observable<Response> |
xaddObservable(List<String> args)
Deprecated.
use
rxXadd(java.util.List<java.lang.String>) instead |
RedisAPI |
xclaim(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xclaim.
|
rx.Observable<Response> |
xclaimObservable(List<String> args)
Deprecated.
use
rxXclaim(java.util.List<java.lang.String>) instead |
RedisAPI |
xdel(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xdel.
|
rx.Observable<Response> |
xdelObservable(List<String> args)
Deprecated.
use
rxXdel(java.util.List<java.lang.String>) instead |
RedisAPI |
xgroup(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xgroup.
|
rx.Observable<Response> |
xgroupObservable(List<String> args)
Deprecated.
use
rxXgroup(java.util.List<java.lang.String>) instead |
RedisAPI |
xinfo(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xinfo.
|
rx.Observable<Response> |
xinfoObservable(List<String> args)
Deprecated.
use
rxXinfo(java.util.List<java.lang.String>) instead |
RedisAPI |
xlen(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xlen.
|
rx.Observable<Response> |
xlenObservable(String arg0)
Deprecated.
use
rxXlen(java.lang.String) instead |
RedisAPI |
xpending(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xpending.
|
rx.Observable<Response> |
xpendingObservable(List<String> args)
Deprecated.
use
rxXpending(java.util.List<java.lang.String>) instead |
RedisAPI |
xrange(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xrange.
|
rx.Observable<Response> |
xrangeObservable(List<String> args)
Deprecated.
use
rxXrange(java.util.List<java.lang.String>) instead |
RedisAPI |
xread(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xread.
|
RedisAPI |
xreadgroup(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xreadgroup.
|
rx.Observable<Response> |
xreadgroupObservable(List<String> args)
Deprecated.
use
rxXreadgroup(java.util.List<java.lang.String>) instead |
rx.Observable<Response> |
xreadObservable(List<String> args)
Deprecated.
use
rxXread(java.util.List<java.lang.String>) instead |
RedisAPI |
xrevrange(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xrevrange.
|
rx.Observable<Response> |
xrevrangeObservable(List<String> args)
Deprecated.
use
rxXrevrange(java.util.List<java.lang.String>) instead |
RedisAPI |
xsetid(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xsetid.
|
rx.Observable<Response> |
xsetidObservable(String arg0,
String arg1)
Deprecated.
use
rxXsetid(java.lang.String, java.lang.String) instead |
RedisAPI |
xtrim(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command xtrim.
|
rx.Observable<Response> |
xtrimObservable(List<String> args)
Deprecated.
use
rxXtrim(java.util.List<java.lang.String>) instead |
RedisAPI |
zadd(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zadd.
|
rx.Observable<Response> |
zaddObservable(List<String> args)
Deprecated.
use
rxZadd(java.util.List<java.lang.String>) instead |
RedisAPI |
zcard(String arg0,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zcard.
|
rx.Observable<Response> |
zcardObservable(String arg0)
Deprecated.
use
rxZcard(java.lang.String) instead |
RedisAPI |
zcount(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zcount.
|
rx.Observable<Response> |
zcountObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zincrby(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zincrby.
|
rx.Observable<Response> |
zincrbyObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zinterstore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zinterstore.
|
rx.Observable<Response> |
zinterstoreObservable(List<String> args)
Deprecated.
use
rxZinterstore(java.util.List<java.lang.String>) instead |
RedisAPI |
zlexcount(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zlexcount.
|
rx.Observable<Response> |
zlexcountObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zpopmax(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zpopmax.
|
rx.Observable<Response> |
zpopmaxObservable(List<String> args)
Deprecated.
use
rxZpopmax(java.util.List<java.lang.String>) instead |
RedisAPI |
zpopmin(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zpopmin.
|
rx.Observable<Response> |
zpopminObservable(List<String> args)
Deprecated.
use
rxZpopmin(java.util.List<java.lang.String>) instead |
RedisAPI |
zrange(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrange.
|
RedisAPI |
zrangebylex(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrangebylex.
|
rx.Observable<Response> |
zrangebylexObservable(List<String> args)
Deprecated.
use
rxZrangebylex(java.util.List<java.lang.String>) instead |
RedisAPI |
zrangebyscore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrangebyscore.
|
rx.Observable<Response> |
zrangebyscoreObservable(List<String> args)
Deprecated.
|
rx.Observable<Response> |
zrangeObservable(List<String> args)
Deprecated.
use
rxZrange(java.util.List<java.lang.String>) instead |
RedisAPI |
zrank(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrank.
|
rx.Observable<Response> |
zrankObservable(String arg0,
String arg1)
Deprecated.
use
rxZrank(java.lang.String, java.lang.String) instead |
RedisAPI |
zrem(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrem.
|
rx.Observable<Response> |
zremObservable(List<String> args)
Deprecated.
use
rxZrem(java.util.List<java.lang.String>) instead |
RedisAPI |
zremrangebylex(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zremrangebylex.
|
rx.Observable<Response> |
zremrangebylexObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zremrangebyrank(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zremrangebyrank.
|
rx.Observable<Response> |
zremrangebyrankObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zremrangebyscore(String arg0,
String arg1,
String arg2,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zremrangebyscore.
|
rx.Observable<Response> |
zremrangebyscoreObservable(String arg0,
String arg1,
String arg2)
Deprecated.
|
RedisAPI |
zrevrange(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrevrange.
|
RedisAPI |
zrevrangebylex(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrevrangebylex.
|
rx.Observable<Response> |
zrevrangebylexObservable(List<String> args)
Deprecated.
|
RedisAPI |
zrevrangebyscore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrevrangebyscore.
|
rx.Observable<Response> |
zrevrangebyscoreObservable(List<String> args)
Deprecated.
|
rx.Observable<Response> |
zrevrangeObservable(List<String> args)
Deprecated.
use
rxZrevrange(java.util.List<java.lang.String>) instead |
RedisAPI |
zrevrank(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zrevrank.
|
rx.Observable<Response> |
zrevrankObservable(String arg0,
String arg1)
Deprecated.
use
rxZrevrank(java.lang.String, java.lang.String) instead |
RedisAPI |
zscan(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zscan.
|
rx.Observable<Response> |
zscanObservable(List<String> args)
Deprecated.
use
rxZscan(java.util.List<java.lang.String>) instead |
RedisAPI |
zscore(String arg0,
String arg1,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zscore.
|
rx.Observable<Response> |
zscoreObservable(String arg0,
String arg1)
Deprecated.
use
rxZscore(java.lang.String, java.lang.String) instead |
RedisAPI |
zunionstore(List<String> args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
Redis command zunionstore.
|
rx.Observable<Response> |
zunionstoreObservable(List<String> args)
Deprecated.
use
rxZunionstore(java.util.List<java.lang.String>) instead |
public RedisAPI(io.vertx.redis.client.RedisAPI delegate)
public RedisAPI(Object delegate)
public io.vertx.redis.client.RedisAPI getDelegate()
public void close()
public RedisAPI append(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> appendObservable(String arg0, String arg1)
rxAppend(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxAppend(String arg0, String arg1)
arg0
- arg1
- public RedisAPI asking(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> askingObservable()
rxAsking()
insteadpublic RedisAPI auth(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> authObservable(String arg0)
rxAuth(java.lang.String)
insteadarg0
- public rx.Single<Response> rxAuth(String arg0)
arg0
- public RedisAPI bgrewriteaof(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> bgrewriteaofObservable()
rxBgrewriteaof()
insteadpublic rx.Single<Response> rxBgrewriteaof()
public RedisAPI bgsave(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bgsaveObservable(List<String> args)
rxBgsave(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBgsave(List<String> args)
args
- public RedisAPI bitcount(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bitcountObservable(List<String> args)
rxBitcount(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBitcount(List<String> args)
args
- public RedisAPI bitfield(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bitfieldObservable(List<String> args)
rxBitfield(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBitfield(List<String> args)
args
- public RedisAPI bitop(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bitopObservable(List<String> args)
rxBitop(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBitop(List<String> args)
args
- public RedisAPI bitpos(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bitposObservable(List<String> args)
rxBitpos(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBitpos(List<String> args)
args
- public RedisAPI blpop(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> blpopObservable(List<String> args)
rxBlpop(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBlpop(List<String> args)
args
- public RedisAPI brpop(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> brpopObservable(List<String> args)
rxBrpop(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBrpop(List<String> args)
args
- public RedisAPI brpoplpush(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> brpoplpushObservable(String arg0, String arg1, String arg2)
rxBrpoplpush(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxBrpoplpush(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI bzpopmax(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bzpopmaxObservable(List<String> args)
rxBzpopmax(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBzpopmax(List<String> args)
args
- public RedisAPI bzpopmin(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> bzpopminObservable(List<String> args)
rxBzpopmin(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxBzpopmin(List<String> args)
args
- public RedisAPI client(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> clientObservable(List<String> args)
rxClient(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxClient(List<String> args)
args
- public RedisAPI cluster(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> clusterObservable(List<String> args)
rxCluster(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxCluster(List<String> args)
args
- public RedisAPI command(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> commandObservable()
rxCommand()
insteadpublic RedisAPI config(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> configObservable(List<String> args)
rxConfig(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxConfig(List<String> args)
args
- public RedisAPI dbsize(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> dbsizeObservable()
rxDbsize()
insteadpublic RedisAPI debug(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> debugObservable(List<String> args)
rxDebug(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxDebug(List<String> args)
args
- public RedisAPI decr(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> decrObservable(String arg0)
rxDecr(java.lang.String)
insteadarg0
- public rx.Single<Response> rxDecr(String arg0)
arg0
- public RedisAPI decrby(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> decrbyObservable(String arg0, String arg1)
rxDecrby(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxDecrby(String arg0, String arg1)
arg0
- arg1
- public RedisAPI del(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> delObservable(List<String> args)
rxDel(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxDel(List<String> args)
args
- public RedisAPI discard(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> discardObservable()
rxDiscard()
insteadpublic RedisAPI dump(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> dumpObservable(String arg0)
rxDump(java.lang.String)
insteadarg0
- public rx.Single<Response> rxDump(String arg0)
arg0
- public RedisAPI echo(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> echoObservable(String arg0)
rxEcho(java.lang.String)
insteadarg0
- public rx.Single<Response> rxEcho(String arg0)
arg0
- public RedisAPI eval(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> evalObservable(List<String> args)
rxEval(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxEval(List<String> args)
args
- public RedisAPI evalsha(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> evalshaObservable(List<String> args)
rxEvalsha(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxEvalsha(List<String> args)
args
- public RedisAPI exec(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> execObservable()
rxExec()
insteadpublic RedisAPI exists(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> existsObservable(List<String> args)
rxExists(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxExists(List<String> args)
args
- public RedisAPI expire(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> expireObservable(String arg0, String arg1)
rxExpire(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxExpire(String arg0, String arg1)
arg0
- arg1
- public RedisAPI expireat(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> expireatObservable(String arg0, String arg1)
rxExpireat(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxExpireat(String arg0, String arg1)
arg0
- arg1
- public RedisAPI flushall(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> flushallObservable(List<String> args)
rxFlushall(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxFlushall(List<String> args)
args
- public RedisAPI flushdb(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> flushdbObservable(List<String> args)
rxFlushdb(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxFlushdb(List<String> args)
args
- public RedisAPI geoadd(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> geoaddObservable(List<String> args)
rxGeoadd(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeoadd(List<String> args)
args
- public RedisAPI geodist(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> geodistObservable(List<String> args)
rxGeodist(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeodist(List<String> args)
args
- public RedisAPI geohash(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> geohashObservable(List<String> args)
rxGeohash(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeohash(List<String> args)
args
- public RedisAPI geopos(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> geoposObservable(List<String> args)
rxGeopos(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeopos(List<String> args)
args
- public RedisAPI georadius(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> georadiusObservable(List<String> args)
rxGeoradius(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeoradius(List<String> args)
args
- public RedisAPI georadiusRo(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> georadiusRoObservable(List<String> args)
rxGeoradiusRo(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeoradiusRo(List<String> args)
args
- public RedisAPI georadiusbymember(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> georadiusbymemberObservable(List<String> args)
rxGeoradiusbymember(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeoradiusbymember(List<String> args)
args
- public RedisAPI georadiusbymemberRo(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> georadiusbymemberRoObservable(List<String> args)
rxGeoradiusbymemberRo(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxGeoradiusbymemberRo(List<String> args)
args
- public RedisAPI get(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> getObservable(String arg0)
rxGet(java.lang.String)
insteadarg0
- public rx.Single<Response> rxGet(String arg0)
arg0
- public RedisAPI getbit(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> getbitObservable(String arg0, String arg1)
rxGetbit(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxGetbit(String arg0, String arg1)
arg0
- arg1
- public RedisAPI getrange(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> getrangeObservable(String arg0, String arg1, String arg2)
rxGetrange(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxGetrange(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI getset(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> getsetObservable(String arg0, String arg1)
rxGetset(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxGetset(String arg0, String arg1)
arg0
- arg1
- public RedisAPI hdel(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hdelObservable(List<String> args)
rxHdel(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHdel(List<String> args)
args
- public RedisAPI hexists(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> hexistsObservable(String arg0, String arg1)
rxHexists(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxHexists(String arg0, String arg1)
arg0
- arg1
- public RedisAPI hget(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> hgetObservable(String arg0, String arg1)
rxHget(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxHget(String arg0, String arg1)
arg0
- arg1
- public RedisAPI hgetall(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> hgetallObservable(String arg0)
rxHgetall(java.lang.String)
insteadarg0
- public rx.Single<Response> rxHgetall(String arg0)
arg0
- public RedisAPI hincrby(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> hincrbyObservable(String arg0, String arg1, String arg2)
rxHincrby(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxHincrby(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI hincrbyfloat(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> hincrbyfloatObservable(String arg0, String arg1, String arg2)
rxHincrbyfloat(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxHincrbyfloat(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI hkeys(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> hkeysObservable(String arg0)
rxHkeys(java.lang.String)
insteadarg0
- public rx.Single<Response> rxHkeys(String arg0)
arg0
- public RedisAPI hlen(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> hlenObservable(String arg0)
rxHlen(java.lang.String)
insteadarg0
- public rx.Single<Response> rxHlen(String arg0)
arg0
- public RedisAPI hmget(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hmgetObservable(List<String> args)
rxHmget(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHmget(List<String> args)
args
- public RedisAPI hmset(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hmsetObservable(List<String> args)
rxHmset(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHmset(List<String> args)
args
- public RedisAPI host(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hostObservable(List<String> args)
rxHost(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHost(List<String> args)
args
- public RedisAPI hscan(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hscanObservable(List<String> args)
rxHscan(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHscan(List<String> args)
args
- public RedisAPI hset(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> hsetObservable(List<String> args)
rxHset(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxHset(List<String> args)
args
- public RedisAPI hsetnx(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> hsetnxObservable(String arg0, String arg1, String arg2)
rxHsetnx(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxHsetnx(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI hstrlen(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> hstrlenObservable(String arg0, String arg1)
rxHstrlen(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxHstrlen(String arg0, String arg1)
arg0
- arg1
- public RedisAPI hvals(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> hvalsObservable(String arg0)
rxHvals(java.lang.String)
insteadarg0
- public rx.Single<Response> rxHvals(String arg0)
arg0
- public RedisAPI incr(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> incrObservable(String arg0)
rxIncr(java.lang.String)
insteadarg0
- public rx.Single<Response> rxIncr(String arg0)
arg0
- public RedisAPI incrby(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> incrbyObservable(String arg0, String arg1)
rxIncrby(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxIncrby(String arg0, String arg1)
arg0
- arg1
- public RedisAPI incrbyfloat(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> incrbyfloatObservable(String arg0, String arg1)
rxIncrbyfloat(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxIncrbyfloat(String arg0, String arg1)
arg0
- arg1
- public RedisAPI info(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> infoObservable(List<String> args)
rxInfo(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxInfo(List<String> args)
args
- public RedisAPI keys(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> keysObservable(String arg0)
rxKeys(java.lang.String)
insteadarg0
- public rx.Single<Response> rxKeys(String arg0)
arg0
- public RedisAPI lastsave(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> lastsaveObservable()
rxLastsave()
insteadpublic RedisAPI latency(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> latencyObservable(List<String> args)
rxLatency(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxLatency(List<String> args)
args
- public RedisAPI lindex(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> lindexObservable(String arg0, String arg1)
rxLindex(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxLindex(String arg0, String arg1)
arg0
- arg1
- public RedisAPI linsert(String arg0, String arg1, String arg2, String arg3, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- arg3
- handler
- @Deprecated public rx.Observable<Response> linsertObservable(String arg0, String arg1, String arg2, String arg3)
rxLinsert(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- arg3
- public rx.Single<Response> rxLinsert(String arg0, String arg1, String arg2, String arg3)
arg0
- arg1
- arg2
- arg3
- public RedisAPI llen(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> llenObservable(String arg0)
rxLlen(java.lang.String)
insteadarg0
- public rx.Single<Response> rxLlen(String arg0)
arg0
- public RedisAPI lolwut(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> lolwutObservable(List<String> args)
rxLolwut(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxLolwut(List<String> args)
args
- public RedisAPI lpop(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> lpopObservable(String arg0)
rxLpop(java.lang.String)
insteadarg0
- public rx.Single<Response> rxLpop(String arg0)
arg0
- public RedisAPI lpush(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> lpushObservable(List<String> args)
rxLpush(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxLpush(List<String> args)
args
- public RedisAPI lpushx(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> lpushxObservable(List<String> args)
rxLpushx(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxLpushx(List<String> args)
args
- public RedisAPI lrange(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> lrangeObservable(String arg0, String arg1, String arg2)
rxLrange(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxLrange(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI lrem(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> lremObservable(String arg0, String arg1, String arg2)
rxLrem(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxLrem(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI lset(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> lsetObservable(String arg0, String arg1, String arg2)
rxLset(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxLset(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI ltrim(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> ltrimObservable(String arg0, String arg1, String arg2)
rxLtrim(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxLtrim(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI memory(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> memoryObservable(List<String> args)
rxMemory(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxMemory(List<String> args)
args
- public RedisAPI mget(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> mgetObservable(List<String> args)
rxMget(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxMget(List<String> args)
args
- public RedisAPI migrate(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> migrateObservable(List<String> args)
rxMigrate(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxMigrate(List<String> args)
args
- public RedisAPI module(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> moduleObservable(List<String> args)
rxModule(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxModule(List<String> args)
args
- public RedisAPI monitor(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> monitorObservable()
rxMonitor()
insteadpublic RedisAPI move(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> moveObservable(String arg0, String arg1)
rxMove(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxMove(String arg0, String arg1)
arg0
- arg1
- public RedisAPI mset(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> msetObservable(List<String> args)
rxMset(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxMset(List<String> args)
args
- public RedisAPI msetnx(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> msetnxObservable(List<String> args)
rxMsetnx(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxMsetnx(List<String> args)
args
- public RedisAPI multi(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> multiObservable()
rxMulti()
insteadpublic RedisAPI object(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> objectObservable(List<String> args)
rxObject(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxObject(List<String> args)
args
- public RedisAPI persist(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> persistObservable(String arg0)
rxPersist(java.lang.String)
insteadarg0
- public rx.Single<Response> rxPersist(String arg0)
arg0
- public RedisAPI pexpire(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> pexpireObservable(String arg0, String arg1)
rxPexpire(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxPexpire(String arg0, String arg1)
arg0
- arg1
- public RedisAPI pexpireat(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> pexpireatObservable(String arg0, String arg1)
rxPexpireat(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxPexpireat(String arg0, String arg1)
arg0
- arg1
- public RedisAPI pfadd(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pfaddObservable(List<String> args)
rxPfadd(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPfadd(List<String> args)
args
- public RedisAPI pfcount(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pfcountObservable(List<String> args)
rxPfcount(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPfcount(List<String> args)
args
- public RedisAPI pfdebug(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pfdebugObservable(List<String> args)
rxPfdebug(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPfdebug(List<String> args)
args
- public RedisAPI pfmerge(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pfmergeObservable(List<String> args)
rxPfmerge(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPfmerge(List<String> args)
args
- public RedisAPI pfselftest(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> pfselftestObservable()
rxPfselftest()
insteadpublic rx.Single<Response> rxPfselftest()
public RedisAPI ping(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pingObservable(List<String> args)
rxPing(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPing(List<String> args)
args
- public RedisAPI post(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> postObservable(List<String> args)
rxPost(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPost(List<String> args)
args
- public RedisAPI psetex(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> psetexObservable(String arg0, String arg1, String arg2)
rxPsetex(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxPsetex(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI psubscribe(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> psubscribeObservable(List<String> args)
rxPsubscribe(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPsubscribe(List<String> args)
args
- public RedisAPI psync(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> psyncObservable(String arg0, String arg1)
rxPsync(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxPsync(String arg0, String arg1)
arg0
- arg1
- public RedisAPI pttl(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> pttlObservable(String arg0)
rxPttl(java.lang.String)
insteadarg0
- public rx.Single<Response> rxPttl(String arg0)
arg0
- public RedisAPI publish(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> publishObservable(String arg0, String arg1)
rxPublish(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxPublish(String arg0, String arg1)
arg0
- arg1
- public RedisAPI pubsub(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> pubsubObservable(List<String> args)
rxPubsub(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPubsub(List<String> args)
args
- public RedisAPI punsubscribe(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> punsubscribeObservable(List<String> args)
rxPunsubscribe(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxPunsubscribe(List<String> args)
args
- public RedisAPI randomkey(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> randomkeyObservable()
rxRandomkey()
insteadpublic RedisAPI readonly(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> readonlyObservable()
rxReadonly()
insteadpublic RedisAPI readwrite(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> readwriteObservable()
rxReadwrite()
insteadpublic RedisAPI rename(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> renameObservable(String arg0, String arg1)
rxRename(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxRename(String arg0, String arg1)
arg0
- arg1
- public RedisAPI renamenx(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> renamenxObservable(String arg0, String arg1)
rxRenamenx(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxRenamenx(String arg0, String arg1)
arg0
- arg1
- public RedisAPI replconf(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> replconfObservable(List<String> args)
rxReplconf(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxReplconf(List<String> args)
args
- public RedisAPI replicaof(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> replicaofObservable(String arg0, String arg1)
rxReplicaof(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxReplicaof(String arg0, String arg1)
arg0
- arg1
- public RedisAPI restore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> restoreObservable(List<String> args)
rxRestore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxRestore(List<String> args)
args
- public RedisAPI restoreAsking(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> restoreAskingObservable(List<String> args)
rxRestoreAsking(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxRestoreAsking(List<String> args)
args
- public RedisAPI role(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> roleObservable()
rxRole()
insteadpublic RedisAPI rpop(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> rpopObservable(String arg0)
rxRpop(java.lang.String)
insteadarg0
- public rx.Single<Response> rxRpop(String arg0)
arg0
- public RedisAPI rpoplpush(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> rpoplpushObservable(String arg0, String arg1)
rxRpoplpush(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxRpoplpush(String arg0, String arg1)
arg0
- arg1
- public RedisAPI rpush(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> rpushObservable(List<String> args)
rxRpush(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxRpush(List<String> args)
args
- public RedisAPI rpushx(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> rpushxObservable(List<String> args)
rxRpushx(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxRpushx(List<String> args)
args
- public RedisAPI sadd(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> saddObservable(List<String> args)
rxSadd(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSadd(List<String> args)
args
- public RedisAPI save(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> saveObservable()
rxSave()
insteadpublic RedisAPI scan(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> scanObservable(List<String> args)
rxScan(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxScan(List<String> args)
args
- public RedisAPI scard(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> scardObservable(String arg0)
rxScard(java.lang.String)
insteadarg0
- public rx.Single<Response> rxScard(String arg0)
arg0
- public RedisAPI script(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> scriptObservable(List<String> args)
rxScript(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxScript(List<String> args)
args
- public RedisAPI sdiff(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sdiffObservable(List<String> args)
rxSdiff(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSdiff(List<String> args)
args
- public RedisAPI sdiffstore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sdiffstoreObservable(List<String> args)
rxSdiffstore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSdiffstore(List<String> args)
args
- public RedisAPI select(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> selectObservable(String arg0)
rxSelect(java.lang.String)
insteadarg0
- public rx.Single<Response> rxSelect(String arg0)
arg0
- public RedisAPI set(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> setObservable(List<String> args)
rxSet(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSet(List<String> args)
args
- public RedisAPI setbit(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> setbitObservable(String arg0, String arg1, String arg2)
rxSetbit(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxSetbit(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI setex(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> setexObservable(String arg0, String arg1, String arg2)
rxSetex(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxSetex(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI setnx(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> setnxObservable(String arg0, String arg1)
rxSetnx(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxSetnx(String arg0, String arg1)
arg0
- arg1
- public RedisAPI setrange(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> setrangeObservable(String arg0, String arg1, String arg2)
rxSetrange(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxSetrange(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI shutdown(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> shutdownObservable(List<String> args)
rxShutdown(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxShutdown(List<String> args)
args
- public RedisAPI sinter(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sinterObservable(List<String> args)
rxSinter(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSinter(List<String> args)
args
- public RedisAPI sinterstore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sinterstoreObservable(List<String> args)
rxSinterstore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSinterstore(List<String> args)
args
- public RedisAPI sismember(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> sismemberObservable(String arg0, String arg1)
rxSismember(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxSismember(String arg0, String arg1)
arg0
- arg1
- public RedisAPI slaveof(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> slaveofObservable(String arg0, String arg1)
rxSlaveof(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxSlaveof(String arg0, String arg1)
arg0
- arg1
- public RedisAPI slowlog(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> slowlogObservable(List<String> args)
rxSlowlog(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSlowlog(List<String> args)
args
- public RedisAPI smembers(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> smembersObservable(String arg0)
rxSmembers(java.lang.String)
insteadarg0
- public rx.Single<Response> rxSmembers(String arg0)
arg0
- public RedisAPI smove(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> smoveObservable(String arg0, String arg1, String arg2)
rxSmove(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxSmove(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI sort(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sortObservable(List<String> args)
rxSort(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSort(List<String> args)
args
- public RedisAPI spop(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> spopObservable(List<String> args)
rxSpop(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSpop(List<String> args)
args
- public RedisAPI srandmember(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> srandmemberObservable(List<String> args)
rxSrandmember(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSrandmember(List<String> args)
args
- public RedisAPI srem(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sremObservable(List<String> args)
rxSrem(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSrem(List<String> args)
args
- public RedisAPI sscan(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sscanObservable(List<String> args)
rxSscan(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSscan(List<String> args)
args
- public RedisAPI strlen(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> strlenObservable(String arg0)
rxStrlen(java.lang.String)
insteadarg0
- public rx.Single<Response> rxStrlen(String arg0)
arg0
- public RedisAPI subscribe(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> subscribeObservable(List<String> args)
rxSubscribe(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSubscribe(List<String> args)
args
- public RedisAPI substr(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> substrObservable(String arg0, String arg1, String arg2)
rxSubstr(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxSubstr(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI sunion(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sunionObservable(List<String> args)
rxSunion(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSunion(List<String> args)
args
- public RedisAPI sunionstore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> sunionstoreObservable(List<String> args)
rxSunionstore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxSunionstore(List<String> args)
args
- public RedisAPI swapdb(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> swapdbObservable(String arg0, String arg1)
rxSwapdb(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxSwapdb(String arg0, String arg1)
arg0
- arg1
- public RedisAPI sync(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> syncObservable()
rxSync()
insteadpublic RedisAPI time(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> timeObservable()
rxTime()
insteadpublic RedisAPI touch(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> touchObservable(List<String> args)
rxTouch(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxTouch(List<String> args)
args
- public RedisAPI ttl(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> ttlObservable(String arg0)
rxTtl(java.lang.String)
insteadarg0
- public rx.Single<Response> rxTtl(String arg0)
arg0
- public RedisAPI type(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> typeObservable(String arg0)
rxType(java.lang.String)
insteadarg0
- public rx.Single<Response> rxType(String arg0)
arg0
- public RedisAPI unlink(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> unlinkObservable(List<String> args)
rxUnlink(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxUnlink(List<String> args)
args
- public RedisAPI unsubscribe(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> unsubscribeObservable(List<String> args)
rxUnsubscribe(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxUnsubscribe(List<String> args)
args
- public RedisAPI unwatch(io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
handler
- @Deprecated public rx.Observable<Response> unwatchObservable()
rxUnwatch()
insteadpublic RedisAPI wait(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> waitObservable(String arg0, String arg1)
rxWait(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxWait(String arg0, String arg1)
arg0
- arg1
- public RedisAPI watch(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> watchObservable(List<String> args)
rxWatch(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxWatch(List<String> args)
args
- public RedisAPI xack(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xackObservable(List<String> args)
rxXack(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXack(List<String> args)
args
- public RedisAPI xadd(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xaddObservable(List<String> args)
rxXadd(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXadd(List<String> args)
args
- public RedisAPI xclaim(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xclaimObservable(List<String> args)
rxXclaim(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXclaim(List<String> args)
args
- public RedisAPI xdel(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xdelObservable(List<String> args)
rxXdel(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXdel(List<String> args)
args
- public RedisAPI xgroup(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xgroupObservable(List<String> args)
rxXgroup(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXgroup(List<String> args)
args
- public RedisAPI xinfo(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xinfoObservable(List<String> args)
rxXinfo(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXinfo(List<String> args)
args
- public RedisAPI xlen(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> xlenObservable(String arg0)
rxXlen(java.lang.String)
insteadarg0
- public rx.Single<Response> rxXlen(String arg0)
arg0
- public RedisAPI xpending(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xpendingObservable(List<String> args)
rxXpending(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXpending(List<String> args)
args
- public RedisAPI xrange(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xrangeObservable(List<String> args)
rxXrange(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXrange(List<String> args)
args
- public RedisAPI xread(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xreadObservable(List<String> args)
rxXread(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXread(List<String> args)
args
- public RedisAPI xreadgroup(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xreadgroupObservable(List<String> args)
rxXreadgroup(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXreadgroup(List<String> args)
args
- public RedisAPI xrevrange(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xrevrangeObservable(List<String> args)
rxXrevrange(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXrevrange(List<String> args)
args
- public RedisAPI xsetid(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> xsetidObservable(String arg0, String arg1)
rxXsetid(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxXsetid(String arg0, String arg1)
arg0
- arg1
- public RedisAPI xtrim(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> xtrimObservable(List<String> args)
rxXtrim(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxXtrim(List<String> args)
args
- public RedisAPI zadd(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zaddObservable(List<String> args)
rxZadd(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZadd(List<String> args)
args
- public RedisAPI zcard(String arg0, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- handler
- @Deprecated public rx.Observable<Response> zcardObservable(String arg0)
rxZcard(java.lang.String)
insteadarg0
- public rx.Single<Response> rxZcard(String arg0)
arg0
- public RedisAPI zcount(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zcountObservable(String arg0, String arg1, String arg2)
rxZcount(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZcount(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zincrby(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zincrbyObservable(String arg0, String arg1, String arg2)
rxZincrby(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZincrby(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zinterstore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zinterstoreObservable(List<String> args)
rxZinterstore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZinterstore(List<String> args)
args
- public RedisAPI zlexcount(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zlexcountObservable(String arg0, String arg1, String arg2)
rxZlexcount(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZlexcount(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zpopmax(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zpopmaxObservable(List<String> args)
rxZpopmax(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZpopmax(List<String> args)
args
- public RedisAPI zpopmin(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zpopminObservable(List<String> args)
rxZpopmin(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZpopmin(List<String> args)
args
- public RedisAPI zrange(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrangeObservable(List<String> args)
rxZrange(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrange(List<String> args)
args
- public RedisAPI zrangebylex(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrangebylexObservable(List<String> args)
rxZrangebylex(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrangebylex(List<String> args)
args
- public RedisAPI zrangebyscore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrangebyscoreObservable(List<String> args)
rxZrangebyscore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrangebyscore(List<String> args)
args
- public RedisAPI zrank(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> zrankObservable(String arg0, String arg1)
rxZrank(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxZrank(String arg0, String arg1)
arg0
- arg1
- public RedisAPI zrem(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zremObservable(List<String> args)
rxZrem(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrem(List<String> args)
args
- public RedisAPI zremrangebylex(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zremrangebylexObservable(String arg0, String arg1, String arg2)
rxZremrangebylex(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZremrangebylex(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zremrangebyrank(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zremrangebyrankObservable(String arg0, String arg1, String arg2)
rxZremrangebyrank(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZremrangebyrank(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zremrangebyscore(String arg0, String arg1, String arg2, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- arg2
- handler
- @Deprecated public rx.Observable<Response> zremrangebyscoreObservable(String arg0, String arg1, String arg2)
rxZremrangebyscore(java.lang.String, java.lang.String, java.lang.String)
insteadarg0
- arg1
- arg2
- public rx.Single<Response> rxZremrangebyscore(String arg0, String arg1, String arg2)
arg0
- arg1
- arg2
- public RedisAPI zrevrange(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrevrangeObservable(List<String> args)
rxZrevrange(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrevrange(List<String> args)
args
- public RedisAPI zrevrangebylex(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrevrangebylexObservable(List<String> args)
rxZrevrangebylex(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrevrangebylex(List<String> args)
args
- public RedisAPI zrevrangebyscore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zrevrangebyscoreObservable(List<String> args)
rxZrevrangebyscore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZrevrangebyscore(List<String> args)
args
- public RedisAPI zrevrank(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> zrevrankObservable(String arg0, String arg1)
rxZrevrank(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxZrevrank(String arg0, String arg1)
arg0
- arg1
- public RedisAPI zscan(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zscanObservable(List<String> args)
rxZscan(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZscan(List<String> args)
args
- public RedisAPI zscore(String arg0, String arg1, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
arg0
- arg1
- handler
- @Deprecated public rx.Observable<Response> zscoreObservable(String arg0, String arg1)
rxZscore(java.lang.String, java.lang.String)
insteadarg0
- arg1
- public rx.Single<Response> rxZscore(String arg0, String arg1)
arg0
- arg1
- public RedisAPI zunionstore(List<String> args, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> handler)
args
- handler
- @Deprecated public rx.Observable<Response> zunionstoreObservable(List<String> args)
rxZunionstore(java.util.List<java.lang.String>)
insteadargs
- public rx.Single<Response> rxZunionstore(List<String> args)
args
- public static RedisAPI api(RedisConnection connection)
public static RedisAPI newInstance(io.vertx.redis.client.RedisAPI arg)
Copyright © 2022 Eclipse. All rights reserved.