Uses of Interface
com.hazelcast.core.IFunction

Packages that use IFunction
com.hazelcast.core Provides core API interfaces/classes. 
 

Uses of IFunction in com.hazelcast.core
 

Methods in com.hazelcast.core with parameters of type IFunction
 void IAtomicReference.alter(IFunction<E,E> function)
          Alters the currently stored reference by applying a function on it.
 void IAtomicLong.alter(IFunction<Long,Long> function)
          Alters the currently stored value by applying a function on it.
 E IAtomicReference.alterAndGet(IFunction<E,E> function)
          Alters the currently stored reference by applying a function on it and gets the result.
 long IAtomicLong.alterAndGet(IFunction<Long,Long> function)
          Alters the currently stored value by applying a function on it and gets the result.
<R> R
IAtomicReference.apply(IFunction<E,R> function)
          Applies a function on the value, the actual stored value will not change.
<R> R
IAtomicLong.apply(IFunction<Long,R> function)
          Applies a function on the value, the actual stored value will not change.
 ICompletableFuture<Void> AsyncAtomicReference.asyncAlter(IFunction<E,E> function)
           
 ICompletableFuture<Void> AsyncAtomicLong.asyncAlter(IFunction<Long,Long> function)
           
 ICompletableFuture<E> AsyncAtomicReference.asyncAlterAndGet(IFunction<E,E> function)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncAlterAndGet(IFunction<Long,Long> function)
           
<R> ICompletableFuture<R>
AsyncAtomicReference.asyncApply(IFunction<E,R> function)
           
<R> ICompletableFuture<R>
AsyncAtomicLong.asyncApply(IFunction<Long,R> function)
           
 ICompletableFuture<E> AsyncAtomicReference.asyncGetAndAlter(IFunction<E,E> function)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGetAndAlter(IFunction<Long,Long> function)
           
 E IAtomicReference.getAndAlter(IFunction<E,E> function)
          Alters the currently stored reference by applying a function on it on and gets the old value.
 long IAtomicLong.getAndAlter(IFunction<Long,Long> function)
          Alters the currently stored value by applying a function on it on and gets the old value.
 



Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.