Toggle navigation
Home
java.util.function.BiFunction to java.util.function.Function
No. of Instances - 34
No. of Commits - 10
No. of Projects - {'neo4j', 'CoreNLP', 'pulsar', 'speedment', 'error-prone', 'flink', 'atomix', 'james-project', 'vert.x'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
endpoint.pool.getConnection(new Waiter<HttpClientConnection>(client.getVertx().getOrCreateContext()){ @Override public void handleFailure( ContextInternal ctx, Throwable failure){ if (metrics != null) { metrics.dequeueRequest(endpoint.metric,metric); } onFailure.accept(ctx,failure); } @Override public void handleConnection( ContextInternal ctx, HttpClientConnection conn){ if (metrics != null) { metrics.dequeueRequest(endpoint.metric,metric); } boolean claimed=onSuccess.apply(ctx,conn); if (!claimed) { conn.recycle(); } } } )
to
endpoint.pool.getConnection(client.getVertx().getOrCreateContext(),ar -> { if (ar.succeeded()) { HttpClientConnection conn=ar.result(); if (metrics != null) { metrics.dequeueRequest(endpoint.metric,metric); } boolean claimed=onSuccess.apply(conn); if (!claimed) { conn.recycle(); } } else { if (metrics != null) { metrics.dequeueRequest(endpoint.metric,metric); } onFailure.accept(ar.cause()); } } )
resourceFactory.apply(member,cluster)
to
resourceFactory.apply(cluster)
resourceFactory.apply(uri,cluster)
to
resourceFactory.apply(cluster)
streamer.apply(manager,e).map(fkEncoder::apply).collect(joining(","))
to
streamer.apply(e).map(fkEncoder::apply).collect(joining(","))
streamer.apply(manager,e).map(fkEncoder).collect(joining(","))
to
streamer.apply(e).map(fkEncoder).collect(joining(","))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
when(factory.apply(ch,true))
to
when(factory.apply(boltChannel))
Update argument list (Method invocation)
apply
to
apply
Rename Variable
newVersions
to
getProtocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
available
to
protocolHandlers
Cascading Type Change (Different)
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
ProtocolChooser
to
BoltHandshakeProtocolHandler
Cascading Type Change (Similar)
BiFunction
to
Function
BiFunction
to
Function
BiFunction
to
Function