Reperesents modifiers for space take operations.

C# | Visual Basic | Visual C++ | J# |
[FlagsAttribute] public enum TakeModifiers
<FlagsAttribute> _ Public Enumeration TakeModifiers
[FlagsAttribute] public enum class TakeModifiers
/** @attribute FlagsAttribute */ public enum TakeModifiers

Member | Description |
---|---|
None | |
IgnorePartialFailure |
A modifier passed to read multiple and take multiple 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 |