K - Key type.V - Value type.public interface RedisTransactionalReactiveCommands<K,V>
| Modifier and Type | Method and Description |
|---|---|
rx.Observable<String> |
discard()
Discard all commands issued after MULTI.
|
rx.Observable<Object> |
exec()
Execute all commands issued after MULTI.
|
rx.Observable<String> |
multi()
Mark the start of a transaction block.
|
rx.Observable<String> |
unwatch()
Forget about all watched keys.
|
rx.Observable<String> |
watch(K... keys)
Watch the given keys to determine execution of the MULTI/EXEC block.
|
rx.Observable<String> discard()
OK.rx.Observable<Object> exec()
WATCH, EXEC can return arx.Observable<String> multi()
OK.rx.Observable<String> watch(K... keys)
keys - the keyOK.rx.Observable<String> unwatch()
OK.Copyright © 2017 lettuce.io. All rights reserved.