Enum ShelfBatchFailureMode
- Namespace
- XENBIT.ResQueServe.Abstractions.DataStructures
- Assembly
- RQS.Abstractions.dll
[JsonConverter(typeof(JsonStringEnumConverter<ShelfBatchFailureMode>))]
public enum ShelfBatchFailureMode
- Extension Methods
Fields
AllOrNothing = 2Complete the entire batch but collect all failures. Roll back all operations if any entity fails.
SkipAndContinue = 1Skip failed entities and continue processing the remaining entities. Successful operations are committed, failed entities are reported.
StopOnFirstFailure = 0Stop the entire batch operation immediately when the first entity fails. All successful operations are rolled back.