Toggle navigation
Home
java.util.concurrent.atomic.AtomicBoolean to boolean
No. of Instances - 3
No. of Commits - 3
No. of Projects - {'atomix'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Update Class Instacne Creation
new OSessionStoragePerformanceStatistic(intervalBetweenSnapshots,enabled.get() ? cleanUpInterval : -1)
to
new OSessionStoragePerformanceStatistic(intervalBetweenSnapshots,enabled ? cleanUpInterval : -1)
Add or Remove Method invocation
entryQueue.isEmpty()
to
splitSize
CompletableFuture.allOf(futures).thenRun(() -> cluster.addMembershipListener(this::handleMembershipEvent)).thenComposeAsync(v -> cluster.open(),executor).thenComposeAsync(v -> context.open(),executor).thenRun(() -> open.set(true))
to
CompletableFuture.allOf(futures).thenRun(() -> cluster.addMembershipListener(this::handleMembershipEvent)).thenComposeAsync(v -> cluster.open(),executor).thenComposeAsync(v -> context.open(),executor).thenRun(() -> open=true)
this.hasData.get()
to
hasData
this.closed.compareAndSet(true,false)
to
closed
isWaitingForFloatingBuffers.get()
to
isWaitingForFloatingBuffers
Other
!isWritable
to
isWritable