|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IFunction | |
---|---|
com.hazelcast.client.proxy | This package contains client side proxy implementations of the different Hazelcast data structures and operation types |
com.hazelcast.concurrent.atomiclong | This package contains IAtomicLong functionality for Hazelcast. The IAtomicLong is the distributed version of the AtomicLong . |
com.hazelcast.concurrent.atomiclong.client | This package contains client requests for the IAtomicLong. This package contains all the client request object to operate on the IAtomicLong that are send by the client. |
com.hazelcast.concurrent.atomiclong.operations | This package contains the operations on the IAtomicLong. |
com.hazelcast.concurrent.atomicreference | This package contains IAtomicReferece functionality for Hazelcast. The IAtomicReference is the distributed version of the AtomicReference . |
com.hazelcast.core | Provides core API interfaces/classes. |
com.hazelcast.map.impl | Contains implementation specific classes of com.hazelcast.map package. |
com.hazelcast.ringbuffer | Contains the API for the Ringbuffer . |
com.hazelcast.ringbuffer.impl | Contains the Ringbuffer implementation classes. |
com.hazelcast.ringbuffer.impl.operations | |
com.hazelcast.util | This package contains classes to support the inner workings of Hazelcast as well as some backports of newer Java features / data structures to support older Java versions in a clean and nice way. |
Uses of IFunction in com.hazelcast.client.proxy |
---|
Methods in com.hazelcast.client.proxy with parameters of type IFunction | ||
---|---|---|
void |
ClientAtomicReferenceProxy.alter(IFunction<E,E> function)
|
|
void |
ClientAtomicLongProxy.alter(IFunction<Long,Long> function)
|
|
E |
ClientAtomicReferenceProxy.alterAndGet(IFunction<E,E> function)
|
|
long |
ClientAtomicLongProxy.alterAndGet(IFunction<Long,Long> function)
|
|
|
ClientAtomicReferenceProxy.apply(IFunction<E,R> function)
|
|
|
ClientAtomicLongProxy.apply(IFunction<Long,R> function)
|
|
E |
ClientAtomicReferenceProxy.getAndAlter(IFunction<E,E> function)
|
|
long |
ClientAtomicLongProxy.getAndAlter(IFunction<Long,Long> function)
|
Uses of IFunction in com.hazelcast.concurrent.atomiclong |
---|
Methods in com.hazelcast.concurrent.atomiclong with parameters of type IFunction | ||
---|---|---|
void |
AtomicLongProxy.alter(IFunction<Long,Long> function)
|
|
long |
AtomicLongProxy.alterAndGet(IFunction<Long,Long> function)
|
|
|
AtomicLongProxy.apply(IFunction<Long,R> function)
|
|
InternalCompletableFuture<Void> |
AtomicLongProxy.asyncAlter(IFunction<Long,Long> function)
|
|
InternalCompletableFuture<Long> |
AtomicLongProxy.asyncAlterAndGet(IFunction<Long,Long> function)
|
|
|
AtomicLongProxy.asyncApply(IFunction<Long,R> function)
|
|
InternalCompletableFuture<Long> |
AtomicLongProxy.asyncGetAndAlter(IFunction<Long,Long> function)
|
|
long |
AtomicLongProxy.getAndAlter(IFunction<Long,Long> function)
|
Uses of IFunction in com.hazelcast.concurrent.atomiclong.client |
---|
Methods in com.hazelcast.concurrent.atomiclong.client that return IFunction | |
---|---|
protected IFunction<Long,Long> |
AbstractAlterRequest.getFunction()
|
Uses of IFunction in com.hazelcast.concurrent.atomiclong.operations |
---|
Fields in com.hazelcast.concurrent.atomiclong.operations declared as IFunction | |
---|---|
protected IFunction<Long,Long> |
AbstractAlterOperation.function
|
Constructors in com.hazelcast.concurrent.atomiclong.operations with parameters of type IFunction | |
---|---|
AbstractAlterOperation(String name,
IFunction<Long,Long> function)
|
|
AlterAndGetOperation(String name,
IFunction<Long,Long> function)
|
|
AlterOperation(String name,
IFunction<Long,Long> function)
|
|
ApplyOperation(String name,
IFunction<Long,R> function)
|
|
GetAndAlterOperation(String name,
IFunction<Long,Long> function)
|
Uses of IFunction in com.hazelcast.concurrent.atomicreference |
---|
Methods in com.hazelcast.concurrent.atomicreference with parameters of type IFunction | ||
---|---|---|
void |
AtomicReferenceProxy.alter(IFunction<E,E> function)
|
|
E |
AtomicReferenceProxy.alterAndGet(IFunction<E,E> function)
|
|
|
AtomicReferenceProxy.apply(IFunction<E,R> function)
|
|
InternalCompletableFuture<Void> |
AtomicReferenceProxy.asyncAlter(IFunction<E,E> function)
|
|
InternalCompletableFuture<E> |
AtomicReferenceProxy.asyncAlterAndGet(IFunction<E,E> function)
|
|
|
AtomicReferenceProxy.asyncApply(IFunction<E,R> function)
|
|
InternalCompletableFuture<E> |
AtomicReferenceProxy.asyncGetAndAlter(IFunction<E,E> function)
|
|
E |
AtomicReferenceProxy.getAndAlter(IFunction<E,E> function)
|
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. |
|
|
IAtomicReference.apply(IFunction<E,R> function)
Applies a function on the value, the actual stored value will not change. |
|
|
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)
Alters the currently stored reference by applying a function on it. |
|
ICompletableFuture<Void> |
AsyncAtomicLong.asyncAlter(IFunction<Long,Long> function)
Alters the currently stored value by applying a function on it. |
|
ICompletableFuture<E> |
AsyncAtomicReference.asyncAlterAndGet(IFunction<E,E> function)
Alters the currently stored reference by applying a function on it and gets the result. |
|
ICompletableFuture<Long> |
AsyncAtomicLong.asyncAlterAndGet(IFunction<Long,Long> function)
Alters the currently stored value by applying a function on it and gets the result. |
|
|
AsyncAtomicReference.asyncApply(IFunction<E,R> function)
Applies a function on the value, the actual stored value will not change. |
|
|
AsyncAtomicLong.asyncApply(IFunction<Long,R> function)
Applies a function on the value, the actual stored value will not change. |
|
ICompletableFuture<E> |
AsyncAtomicReference.asyncGetAndAlter(IFunction<E,E> function)
Alters the currently stored reference by applying a function on it on and gets the old value. |
|
ICompletableFuture<Long> |
AsyncAtomicLong.asyncGetAndAlter(IFunction<Long,Long> function)
Alters the currently stored value by applying a function on it on and gets the old value. |
|
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. |
Uses of IFunction in com.hazelcast.map.impl |
---|
Methods in com.hazelcast.map.impl that return IFunction | |
---|---|
IFunction<Object,Data> |
MapContainer.toData()
|
Constructors in com.hazelcast.map.impl with parameters of type IFunction | |
---|---|
MapKeyLoader(String mapName,
OperationService opService,
InternalPartitionService ps,
ExecutionService execService,
IFunction<Object,Data> serialize)
|
Uses of IFunction in com.hazelcast.ringbuffer |
---|
Methods in com.hazelcast.ringbuffer with parameters of type IFunction | |
---|---|
ICompletableFuture<ReadResultSet<E>> |
Ringbuffer.readManyAsync(long startSequence,
int minCount,
int maxCount,
IFunction<E,Boolean> filter)
Reads a batch of items from the Ringbuffer. |
Uses of IFunction in com.hazelcast.ringbuffer.impl |
---|
Methods in com.hazelcast.ringbuffer.impl with parameters of type IFunction | |
---|---|
ICompletableFuture<ReadResultSet<E>> |
RingbufferProxy.readManyAsync(long startSequence,
int minCount,
int maxCount,
IFunction<E,Boolean> filter)
|
Constructors in com.hazelcast.ringbuffer.impl with parameters of type IFunction | |
---|---|
ReadResultSetImpl(int minSize,
int maxSize,
HazelcastInstance hz,
IFunction<Object,Boolean> filter)
|
Uses of IFunction in com.hazelcast.ringbuffer.impl.operations |
---|
Constructors in com.hazelcast.ringbuffer.impl.operations with parameters of type IFunction | |
---|---|
ReadManyOperation(String name,
long startSequence,
int minSize,
int maxSize,
IFunction<?,Boolean> filter)
|
Uses of IFunction in com.hazelcast.util |
---|
Methods in com.hazelcast.util with parameters of type IFunction | ||
---|---|---|
static
|
IterableUtil.map(Iterable<T> iterable,
IFunction<T,R> mapper)
Transform the Iterable by applying a function to each element |
|
static
|
IterableUtil.map(Iterator<T> iterator,
IFunction<T,R> mapper)
Transform the Iterator by applying a function to each element |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |