Toggle navigation
Home
java.util.Set<org.redisson.api.RFuture<java.lang.String>> to java.util.Map.Entry
No. of Instances - 4
No. of Commits - 1
No. of Projects - {'redisson'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Cascading Type Change (Similar)
Set<RFuture<String>>
to
Entry
Set<RFuture<String>>
to
Entry
Set<RFuture<String>>
to
Entry
Set<RFuture<String>>
to
Entry
Set<RFuture<String>>
to
Entry
Set<RFuture<String>>
to
Entry
Rename Variable
futuresSet
to
entry
futuresSet
to
entry
futuresSet
to
entry
futuresSet
to
entry
removedFutures
to
entry
futures
to
remoteMap
futures
to
remoteMap
futures
to
remoteMap
futures
to
remoteMap
Add or Remove Method invocation
subscribe(remoteInterface,requestQueue,executor)
to
resubscribe(remoteInterface,requestQueue,executor)
Update Anonymous class
{ @Override public void operationComplete( Future<Void> future) throws Exception { if (futures.get(remoteInterface) == null) { return; } if (!future.isSuccess()) { if (future.cause() instanceof RedissonShutdownException) { return; } log.error("Can't send response: " + responseHolder.get() + " for request: "+ request,future.cause()); } subscribe(remoteInterface,requestQueue,executor); } }
to
{ @Override public void operationComplete( Future<Void> future) throws Exception { if (!remoteMap.containsKey(remoteInterface)) { return; } if (!future.isSuccess()) { if (future.cause() instanceof RedissonShutdownException) { return; } log.error("Can't send response: " + responseHolder.get() + " for request: "+ request,future.cause()); } resubscribe(remoteInterface,requestQueue,executor); } }