Toggle navigation
Home
io.atomix.copycat.PersistenceMode to io.atomix.catalog.client.Command.ConsistencyLevel
No. of Instances - 11
No. of Commits - 1
No. of Projects - {'atomix'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> External
Mapping:
Add or Remove Method invocation
AtomicValueCommands.CompareAndSet.builder().withExpect(expect).withUpdate(update).withTtl(ttl.toMillis()).withPersistence(persistence).build()
to
AtomicValueCommands.CompareAndSet.builder().withExpect(expect).withUpdate(update).withTtl(ttl.toMillis()).withConsistency(consistency).build()
submit(MapCommands.PutIfAbsent.builder().withKey(key).withValue(value).withTtl(ttl.toMillis()).withPersistence(persistence).build())
to
submit(MapCommands.PutIfAbsent.builder().withKey(key).withValue(value).withTtl(ttl.toMillis()).withConsistency(consistency).build())
SetCommands.Add.builder().withValue(value.hashCode()).withTtl(ttl.toMillis()).withPersistence(persistence).build()
to
SetCommands.Add.builder().withValue(value.hashCode()).withTtl(ttl.toMillis()).withConsistency(consistency).build()
AtomicValueCommands.GetAndSet.<T>builder().withValue(value).withTtl(ttl.toMillis()).withPersistence(persistence).build()
to
AtomicValueCommands.GetAndSet.<T>builder().withValue(value).withTtl(ttl.toMillis()).withConsistency(consistency).build()
AtomicValueCommands.CompareAndSet.builder().withExpect(expect).withUpdate(update).withPersistence(persistence).build()
to
AtomicValueCommands.CompareAndSet.builder().withExpect(expect).withUpdate(update).withConsistency(consistency).build()
SetCommands.Add.builder().withValue(value.hashCode()).withPersistence(persistence).build()
to
SetCommands.Add.builder().withValue(value.hashCode()).withConsistency(consistency).build()
submit(MapCommands.Put.builder().withKey(key).withValue(value).withTtl(ttl.toMillis()).withPersistence(persistence).build())
to
submit(MapCommands.Put.builder().withKey(key).withValue(value).withTtl(ttl.toMillis()).withConsistency(consistency).build())
AtomicValueCommands.Set.builder().withValue(value).withTtl(ttl.toMillis()).withPersistence(persistence).build()
to
AtomicValueCommands.Set.builder().withValue(value).withTtl(ttl.toMillis()).withConsistency(consistency).build()
AtomicValueCommands.GetAndSet.<T>builder().withValue(value).withPersistence(persistence).build()
to
AtomicValueCommands.GetAndSet.<T>builder().withValue(value).withConsistency(consistency).build()
AtomicValueCommands.Set.builder().withValue(value).withPersistence(persistence).build()
to
AtomicValueCommands.Set.builder().withValue(value).withConsistency(consistency).build()
submit(MapCommands.Put.builder().withKey(key).withValue(value).withPersistence(persistence).build())
to
submit(MapCommands.Put.builder().withKey(key).withValue(value).withConsistency(consistency).build())
Rename Variable
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency
persistence
to
consistency