|
|
|
@ -59,60 +59,60 @@ public interface CommandAsyncExecutor {
|
|
|
|
|
|
|
|
|
|
<V> V get(RFuture<V> RFuture);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> writeAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> writeAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> writeAsync(byte[] key, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, String name, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, String name, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, byte[] key, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(RedisClient client, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalWriteAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalWriteAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<R, T> RFuture<R> writeAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, Object ... params);
|
|
|
|
|
<R, T> RFuture<R> writeAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<Collection<R>> readAllAsync(Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<R, T> RFuture<R> readAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, Object ... params);
|
|
|
|
|
<R, T> RFuture<R> readAllAsync(RedisCommand<T> command, SlotCallback<T, R> callback, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<Collection<R>> readAllAsync(Collection<R> results, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(RedisClient client, String name, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(RedisClient client, String name, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(String key, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(String key, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalReadAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalWriteAsync(String key, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalWriteAsync(String key, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> evalWriteAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> evalWriteAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> evalCommandType, String script, List<Object> keys, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(byte[] key, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(String key, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(String key, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> writeAsync(String key, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> writeAsync(String key, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<Collection<R>> readAllAsync(RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<Collection<R>> readAllAsync(RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<R, T> RFuture<R> writeAllAsync(Codec codec, RedisCommand<T> command, SlotCallback<T, R> callback, Object... params);
|
|
|
|
|
|
|
|
|
|
<T> RFuture<Void> writeAllAsync(RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T> RFuture<Void> writeAllAsync(RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> writeAsync(String key, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> writeAsync(String key, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(String key, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(String key, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readRandomAsync(Codec codec, RedisCommand<T> command, Object ... params);
|
|
|
|
|
<T, R> RFuture<R> readRandomAsync(Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<T, R> RFuture<R> readRandomAsync(MasterSlaveEntry entry, Codec codec, RedisCommand<T> command, Object... params);
|
|
|
|
|
|
|
|
|
|
<V> RFuture<V> pollFromAnyAsync(String name, Codec codec, RedisCommand<Object> command, long secondsTimeout, String ... queueNames);
|
|
|
|
|
<V> RFuture<V> pollFromAnyAsync(String name, Codec codec, RedisCommand<Object> command, long secondsTimeout, String... queueNames);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|