Uses of Interface
com.hazelcast.core.IFunction
Packages that use IFunction
-
Uses of IFunction in com.hazelcast.cp
Methods in com.hazelcast.cp with parameters of type IFunctionModifier and TypeMethodDescriptionvoid
Alters the currently stored value by applying a function on it.void
Alters the currently stored reference by applying a function on it.long
IAtomicLong.alterAndGet
(IFunction<Long, Long> function) Alters the currently stored value by applying a function on it and gets the result.IAtomicReference.alterAndGet
(IFunction<E, E> function) Alters the currently stored reference by applying a function on it and gets the result.IAtomicLong.alterAndGetAsync
(IFunction<Long, Long> function) Alters the currently stored value by applying a function on it and gets the result.IAtomicReference.alterAndGetAsync
(IFunction<E, E> function) Alters the currently stored reference by applying a function on it and gets the result.IAtomicLong.alterAsync
(IFunction<Long, Long> function) Alters the currently stored value by applying a function on it.IAtomicReference.alterAsync
(IFunction<E, E> function) Alters the currently stored reference by applying a function on it.<R> R
Applies a function on the value, the actual stored value will not change.<R> R
Applies a function on the value, the actual stored value will not change.<R> CompletionStage<R>
IAtomicLong.applyAsync
(IFunction<Long, R> function) Applies a function on the value, the actual stored value will not change.<R> CompletionStage<R>
IAtomicReference.applyAsync
(IFunction<E, R> function) Applies a function on the value, the actual stored value will not change.long
IAtomicLong.getAndAlter
(IFunction<Long, Long> function) Alters the currently stored value by applying a function on it on and gets the old value.IAtomicReference.getAndAlter
(IFunction<E, E> function) Alters the currently stored reference by applying a function on it on and gets the old value.IAtomicLong.getAndAlterAsync
(IFunction<Long, Long> function) Alters the currently stored value by applying a function on it on and gets the old value.IAtomicReference.getAndAlterAsync
(IFunction<E, E> function) Alters the currently stored reference by applying a function on it on and gets the old value. -
Uses of IFunction in com.hazelcast.ringbuffer
Methods in com.hazelcast.ringbuffer with parameters of type IFunctionModifier and TypeMethodDescriptionRingbuffer.readManyAsync
(long startSequence, int minCount, int maxCount, IFunction<E, Boolean> filter) Reads a batch of items from the Ringbuffer.