Package org.redisson.api
Interface NodeAsync
-
- All Known Subinterfaces:
ClusterNode
,Node
- All Known Implementing Classes:
RedisClientEntry
@Deprecated public interface NodeAsync
Deprecated.Redis node interface- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RFuture<Map<String,String>>
clusterInfoAsync()
Deprecated.RFuture<Map<String,String>>
infoAsync(Node.InfoSection section)
Deprecated.RFuture<Boolean>
pingAsync()
Deprecated.RFuture<Boolean>
pingAsync(long timeout, TimeUnit timeUnit)
Deprecated.Ping Redis node with specified timeout.RFuture<Time>
timeAsync()
Deprecated.
-
-
-
Method Detail
-
infoAsync
RFuture<Map<String,String>> infoAsync(Node.InfoSection section)
Deprecated.
-
pingAsync
RFuture<Boolean> pingAsync(long timeout, TimeUnit timeUnit)
Deprecated.Ping Redis node with specified timeout.- Parameters:
timeout
- - ping timeouttimeUnit
- - timeout unit- Returns:
true
if "PONG" reply received,false
otherwise
-
-