Toggle navigation
Home
io.netty.util.concurrent.Promise to org.redisson.misc.RPromise
No. of Instances - 142
No. of Commits - 4
No. of Projects - {'redisson'}
Hierarchy/Composition: T_SUPER_R
Primitive Info: -
NameSpace: External -> Internal
Mapping:
Cascading Type Change (Different)
Future<Long>
to
RFuture<Long>
Future<PubSubConnectionEntry>
to
RFuture<PubSubConnectionEntry>
Future<RemoteServiceAck>
to
RFuture<RemoteServiceAck>
Future<PubSubConnectionEntry>
to
RFuture<PubSubConnectionEntry>
Future<Void>
to
RFuture<Void>
Update Anonymous class
{ @Override public void operationComplete( Future<RedisConnection> future) throws Exception { Future<String> r=c.async(connectionManager.getConfig().getPingTimeout(),RedisCommands.PING); result.put(c,r); latch.countDown(); } }
to
{ @Override public void operationComplete( Future<RedisConnection> future) throws Exception { RFuture<String> r=c.async(connectionManager.getConfig().getPingTimeout(),RedisCommands.PING); result.put(c,r); latch.countDown(); } }
Add or Remove Method invocation
checkConnectionFuture(entry,source,mainPromise,attemptPromise,details,connFuture)
to
checkConnectionFuture(entry,source,mainPromise,attemptPromise,details,connectionFuture)
checkConnectionFuture(entry,source,mainPromise,attemptPromise,details,connFuture)
to
checkConnectionFuture(entry,source,mainPromise,attemptPromise,details,connectionFuture)
Cascading Type Change (Similar)
Promise<RedisConnection>
to
RPromise<RedisConnection>