Reperesents modifiers for space take operations.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
[FlagsAttribute] public enum TakeModifiers
<FlagsAttribute> _ Public Enumeration TakeModifiers
[FlagsAttribute] public enum class TakeModifiers
/** @attribute FlagsAttribute */ public enum TakeModifiers
Members
Member | Description |
---|---|
None |
Use operation default behavior.
|
IgnorePartialFailure |
Affects batch operations. The modifier will cause
partial results to be returned instead of throwing TakeMultipleException
when not all of the requested number of entries are returned and one or more cluster members are not available.
|
EvictOnly |
A modifier passed to take operations. The modifier will cause
eviction from cache of the selected entries - relevant for LRU cache policy only
|
Fifo |
Indicates the operation should comply with First-In-First-Out order.
Can only be used if the relevant type is set with Operation |
FifoGroupingPoll |
The modifier will cause a group fifo poll based on the passed template.
The template must have a property marked with the SpaceFifoGroupingPropertyAttribute.
|
MemoryOnlySearch |
Search for matching entries in cache memory only (do not use the underlying EDS).
|