- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RedisAdvancedClusterAsyncCommands<K,V>,RedisAsyncCommands<K,V>,RedisClusterAsyncCommands<K,V>,RedisClusterPubSubAsyncCommands<K,V>,RedisPubSubAsyncCommands<K,V>
- All Known Implementing Classes:
AbstractRedisAsyncCommands,RedisAdvancedClusterAsyncCommandsImpl,RedisAsyncCommandsImpl,RedisClusterPubSubAsyncCommandsImpl,RedisPubSubAsyncCommandsImpl
public interface BaseRedisAsyncCommands<K,V>
Asynchronous executed commands for basic commands.
- Since:
- 4.0
- Author:
- Mark Paluch
- Generated class:
- by io.lettuce.apigenerator.CreateAsyncApi
-
Method Summary
Modifier and Type Method Description <T> RedisFuture<T>dispatch(ProtocolKeyword type, CommandOutput<K,V,T> output)Dispatch a command to the Redis Server.<T> RedisFuture<T>dispatch(ProtocolKeyword type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)Dispatch a command to the Redis Server.RedisFuture<V>echo(V msg)Echo the given string.voidflushCommands()Flush pending commands.booleanisOpen()RedisFuture<String>ping()Ping the server.RedisFuture<Long>publish(K channel, V message)Post a message to a channel.RedisFuture<List<K>>pubsubChannels()Lists the currently *active channels*.RedisFuture<List<K>>pubsubChannels(K channel)Lists the currently *active channels*.RedisFuture<Long>pubsubNumpat()Returns the number of subscriptions to patterns.RedisFuture<Map<K,Long>>pubsubNumsub(K... channels)Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels.RedisFuture<String>quit()Instructs Redis to disconnect the connection.RedisFuture<String>readOnly()Switch connection to Read-Only mode when connecting to a cluster.RedisFuture<String>readWrite()Switch connection to Read-Write mode (default) when connecting to a cluster.voidreset()Reset the command state.RedisFuture<List<Object>>role()Return the role of the instance in the context of replication.voidsetAutoFlushCommands(boolean autoFlush)Disable or enable auto-flush behavior.RedisFuture<Long>waitForReplication(int replicas, long timeout)Wait for replication.
-
Method Details
-
publish
Post a message to a channel.- Parameters:
channel- the channel type: key.message- the message type: value.- Returns:
- Long integer-reply the number of clients that received the message.
-
pubsubChannels
RedisFuture<List<K>> pubsubChannels()Lists the currently *active channels*.- Returns:
- List<K> array-reply a list of active channels, optionally matching the specified pattern.
-
pubsubChannels
Lists the currently *active channels*.- Parameters:
channel- the key.- Returns:
- List<K> array-reply a list of active channels, optionally matching the specified pattern.
-
pubsubNumsub
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels.- Parameters:
channels- channel keys.- Returns:
- array-reply a list of channels and number of subscribers for every channel.
-
pubsubNumpat
RedisFuture<Long> pubsubNumpat()Returns the number of subscriptions to patterns.- Returns:
- Long integer-reply the number of patterns all the clients are subscribed to.
-
echo
Echo the given string.- Parameters:
msg- the message type: value.- Returns:
- V bulk-string-reply.
-
role
RedisFuture<List<Object>> role()Return the role of the instance in the context of replication.- Returns:
- List<Object> array-reply where the first element is one of master, slave, sentinel and the additional elements are role-specific.
-
ping
RedisFuture<String> ping()Ping the server.- Returns:
- String simple-string-reply.
-
readOnly
RedisFuture<String> readOnly()Switch connection to Read-Only mode when connecting to a cluster.- Returns:
- String simple-string-reply.
-
readWrite
RedisFuture<String> readWrite()Switch connection to Read-Write mode (default) when connecting to a cluster.- Returns:
- String simple-string-reply.
-
quit
RedisFuture<String> quit()Instructs Redis to disconnect the connection. Note that if auto-reconnect is enabled then Lettuce will auto-reconnect if the connection was disconnected. UseStatefulConnection.close()to close connections and release resources.- Returns:
- String simple-string-reply always OK.
-
waitForReplication
Wait for replication.- Parameters:
replicas- minimum number of replicas.timeout- timeout in milliseconds.- Returns:
- number of replicas.
-
dispatch
Dispatch a command to the Redis Server. Please note the command output type must fit to the command response.- Type Parameters:
T- response type.- Parameters:
type- the command, must not benull.output- the command output, must not benull.- Returns:
- the command response.
-
dispatch
<T> RedisFuture<T> dispatch(ProtocolKeyword type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)Dispatch a command to the Redis Server. Please note the command output type must fit to the command response.- Type Parameters:
T- response type.- Parameters:
type- the command, must not benull.output- the command output, must not benull.args- the command arguments, must not benull.- Returns:
- the command response.
-
isOpen
boolean isOpen()- Returns:
trueif the connection is open (connected and not closed).
-
reset
void reset()Reset the command state. Queued commands will be canceled and the internal state will be reset. This is useful when the internal state machine gets out of sync with the connection. -
setAutoFlushCommands
void setAutoFlushCommands(boolean autoFlush)Disable or enable auto-flush behavior. Default istrue. If autoFlushCommands is disabled, multiple commands can be issued without writing them actually to the transport. Commands are buffered until aflushCommands()is issued. After callingflushCommands()commands are sent to the transport and executed by Redis.- Parameters:
autoFlush- state of autoFlush.
-
flushCommands
void flushCommands()Flush pending commands. This commands forces a flush on the channel and can be used to buffer ("pipeline") commands to achieve batching. No-op if channel is not connected.
-