Toggle navigation
Home
java.net.InetSocketAddress to com.datastax.oss.driver.api.core.metadata.EndPoint
No. of Instances - 24
No. of Commits - 2
No. of Projects - {'java-driver'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Wrap or Un-wrap
add
to
add
singleton
to
singleton
Rename Variable
address1
to
endPoint1
connectAddress
to
endPoint
ignoredAddress
to
ignoredEndPoint
connectAddress
to
endPoint
connectAddress
to
endPoint
connectAddress
to
endPoint
connectAddress
to
endPoint
controlBroadcastRpcAddress
to
localEndPoint
Add or Remove Method invocation
boundCluster.dc(0).getNodes().stream().map(BoundNode::inetSocketAddress)
to
boundCluster.dc(0).getNodes().stream().map(node -> new DefaultEndPoint(node.inetSocketAddress()))
SessionUtils.baseBuilder().addContactPoint(address1).addContactPoint(wrongContactPoint).withNodeStateListener(localNodeStateListener).withConfigLoader(loader)
to
SessionUtils.baseBuilder().addContactEndPoint(endPoint1).addContactEndPoint(wrongContactPoint).withNodeStateListener(localNodeStateListener).withConfigLoader(loader)
that.getConnectAddress()
to
that.getEndPoint()
resolve
to
getEndPoint
Cascading Type Change (Similar)
InetSocketAddress
to
EndPoint