Toggle navigation
Home
com.google.common.cache.Cache to java.util.concurrent.ConcurrentMap
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'hadoop'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: External -> Jdk
Mapping:
Add or Remove Method invocation
connections.asMap().values()
to
connections.values()
connections.asMap()
to
connections
connections.get(remoteId,new Callable<Connection>(){ @Override public Connection call() throws Exception { return new Connection(remoteId,serviceClass); } } )
to
connections.get(remoteId)