Package | Description |
---|---|
org.infinispan.commons.api.functional |
Commons Functional API package
|
org.infinispan.functional.impl |
Modifier and Type | Class and Description |
---|---|
static class |
Param.FutureMode
When a method defines
CompletableFuture as a return type, it
implies the method called will be called asynchronously and that the
CompletableFuture returned will be completed once the method's
work is complete. |
static class |
Param.PersistenceMode
When a persistence store is attached to a cache, by default all write
operations, regardless of whether they are inserts, updates or removes,
are persisted to the store.
|
Modifier and Type | Method and Description |
---|---|
FunctionalMap<K,V> |
FunctionalMap.withParams(Param<?>... ps)
Tweak functional map executions providing
Param instances. |
FunctionalMap.ReadOnlyMap<K,V> |
FunctionalMap.ReadOnlyMap.withParams(Param<?>... ps)
Tweak read-only functional map executions providing
Param instances. |
FunctionalMap.WriteOnlyMap<K,V> |
FunctionalMap.WriteOnlyMap.withParams(Param<?>... ps)
Tweak write-only functional map executions providing
Param instances. |
FunctionalMap.ReadWriteMap<K,V> |
FunctionalMap.ReadWriteMap.withParams(Param<?>... ps)
Tweak read-write functional map executions providing
Param instances. |
Modifier and Type | Method and Description |
---|---|
<T> Param<T> |
Params.get(int index)
Retrieve a param given its identifier.
|
Modifier and Type | Method and Description |
---|---|
Params |
Params.addAll(Param<?>... ps)
Adds all parameters and returns a new parameter collection.
|
boolean |
Params.containsAll(Param<?>... ps)
Checks whether all the parameters passed in are already present in the
current parameters.
|
static Params |
Params.from(Param<?>... ps) |
FunctionalMap.ReadWriteMap<K,V> |
ReadWriteMapImpl.withParams(Param<?>... ps) |
FunctionalMap.ReadOnlyMap<K,V> |
ReadOnlyMapImpl.withParams(Param<?>... ps) |
FunctionalMapImpl<K,V> |
FunctionalMapImpl.withParams(Param<?>... ps) |
FunctionalMap.WriteOnlyMap<K,V> |
WriteOnlyMapImpl.withParams(Param<?>... ps) |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.