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