Toggle navigation
Home
com.google.common.util.concurrent.SettableFuture to java.util.concurrent.CompletableFuture
No. of Instances - 8
No. of Commits - 2
No. of Projects - {'presto'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: External -> Jdk
Mapping:
Cascading Type Change (Similar)
SettableFuture<T>
to
CompletableFuture<T>
Add or Remove Method invocation
futureStateChange.set(newState)
to
futureStateChange.complete(newState)
Cascading Type Change (Different)
ImmutableList<SettableFuture<T>>
to
ImmutableList<CompletableFuture<T>>
ImmutableList<SettableFuture<T>>
to
ImmutableList<CompletableFuture<T>>
Rename Method invocation
set
to
complete
set
to
complete
set
to
complete
setException
to
completeExceptionally