Toggle navigation
Home
java.lang.String to org.apache.hadoop.hdds.scm.container.common.helpers.PipelineID
No. of Instances - 23
No. of Commits - 2
No. of Projects - {'hadoop'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Rename Variable
pipelineName
to
id
pipelineName
to
id
pipelineName
to
id
pipelineName
to
id
pipelineName
to
pipelineID
name
to
id
name
to
id
pipeline
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipeline
to
pipelineID
pipeline
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
pipelineName
to
pipelineID
Add or Remove Method invocation
pipeline.getPipelineName()
to
pipeline.getId()
pipeline.getPipelineName()
to
pipeline.getId()
info.getPipelineName()
to
info.getPipelineID()
info.getPipelineName()
to
info.getPipelineID()
CacheBuilder.newBuilder().expireAfterAccess(staleThresholdMs,TimeUnit.MILLISECONDS).maximumSize(maxSize).removalListener(new RemovalListener<PipelineID,XceiverClientSpi>(){ @Override public void onRemoval( RemovalNotification<String,XceiverClientSpi> removalNotification){ synchronized (clientCache) { XceiverClientSpi info=removalNotification.getValue(); info.setEvicted(); } } } ).build()
to
CacheBuilder.newBuilder().expireAfterAccess(staleThresholdMs,TimeUnit.MILLISECONDS).maximumSize(maxSize).removalListener(new RemovalListener<PipelineID,XceiverClientSpi>(){ @Override public void onRemoval( RemovalNotification<PipelineID,XceiverClientSpi> removalNotification){ synchronized (clientCache) { XceiverClientSpi info=removalNotification.getValue(); info.setEvicted(); } } } ).build()
Cascading Type Change (Different)
RemovalListener<String,XceiverClientSpi>
to
RemovalListener<PipelineID,XceiverClientSpi>