Uses of Interface
org.infinispan.functional.Param
-
Packages that use Param Package Description org.infinispan.functional Functional API packageorg.infinispan.functional.impl -
-
Uses of Param in org.infinispan.functional
Classes in org.infinispan.functional that implement Param Modifier and Type Class Description static classParam.ExecutionModeDefines where is the command executed.static classParam.LockingModeNormally the cache has to acquire locks during any write operation to guarantee its correctness.static classParam.PersistenceModeWhen 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.static classParam.ReplicationModestatic classParam.StatisticsModeDefines how statistics are gathered for this command.Methods in org.infinispan.functional with parameters of type Param Modifier and Type Method Description FunctionalMap.ReadOnlyMap<K,V>FunctionalMap.ReadOnlyMap. withParams(Param<?>... ps)Tweak read-only functional map executions providingParaminstances.FunctionalMap.ReadWriteMap<K,V>FunctionalMap.ReadWriteMap. withParams(Param<?>... ps)Tweak read-write functional map executions providingParaminstances.FunctionalMap<K,V>FunctionalMap. withParams(Param<?>... ps)Tweak functional map executions providingParaminstances.FunctionalMap.WriteOnlyMap<K,V>FunctionalMap.WriteOnlyMap. withParams(Param<?>... ps)Tweak write-only functional map executions providingParaminstances. -
Uses of Param in org.infinispan.functional.impl
Methods in org.infinispan.functional.impl that return Param Modifier and Type Method Description <T> Param<T>Params. get(int index)Retrieve a param given its identifier.Methods in org.infinispan.functional.impl with parameters of type Param Modifier and Type Method Description ParamsParams. add(Param<?> p)ParamsParams. addAll(Param<?>... ps)Adds all parameters and returns a new parameter collection.booleanParams. containsAll(Param<?>... ps)Checks whether all the parameters passed in are already present in the current parameters.static ParamsParams. from(Param<?>... ps)FunctionalMapImpl<K,V>FunctionalMapImpl. withParams(Param<?>... ps)FunctionalMap.ReadOnlyMap<K,V>ReadOnlyMapImpl. withParams(Param<?>... ps)FunctionalMap.ReadWriteMap<K,V>ReadWriteMapImpl. withParams(Param<?>... ps)FunctionalMap.WriteOnlyMap<K,V>WriteOnlyMapImpl. withParams(Param<?>... ps)
-