Uses of Class
io.vertx.mutiny.core.shareddata.Counter
Packages that use Counter
-
Uses of Counter in io.vertx.mutiny.core.shareddata
Fields in io.vertx.mutiny.core.shareddata with type parameters of type CounterMethods in io.vertx.mutiny.core.shareddata that return CounterModifier and TypeMethodDescriptionCounter.addAndGetAndForget(long value) Add the value to the counter atomically and return the new countCounter.compareAndSetAndForget(long expected, long value) Set the counter to the specified value only if the current value is the expectec value.Counter.decrementAndGetAndForget()Decrement the counter atomically and return the new countCounter.getAndAddAndForget(long value) Add the value to the counter atomically and return the value before the addCounter.getAndForget()Get the current value of the counterCounter.getAndIncrementAndForget()Increment the counter atomically and return the value before the increment.SharedData.getCounterAndAwait(String name) Get an asynchronous counter.SharedData.getLocalCounterAndAwait(String name) Get an asynchronous local counter.Counter.incrementAndGetAndForget()Increment the counter atomically and return the new countstatic CounterCounter.newInstance(io.vertx.core.shareddata.Counter delegate) Creates a new instance of theCounter.Methods in io.vertx.mutiny.core.shareddata that return types with arguments of type CounterModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Counter>SharedData.getCounter(String name) Get an asynchronous counter.io.smallrye.mutiny.Uni<Counter>SharedData.getLocalCounter(String name) Get an asynchronous local counter.