Table of Contents

Enum ShelfBatchFailureMode

Namespace
XENBIT.ResQueServe.Abstractions.DataStructures
Assembly
RQS.Abstractions.dll
[JsonConverter(typeof(JsonStringEnumConverter<ShelfBatchFailureMode>))]
public enum ShelfBatchFailureMode
Extension Methods

Fields

AllOrNothing = 2

Complete the entire batch but collect all failures. Roll back all operations if any entity fails.

SkipAndContinue = 1

Skip failed entities and continue processing the remaining entities. Successful operations are committed, failed entities are reported.

StopOnFirstFailure = 0

Stop the entire batch operation immediately when the first entity fails. All successful operations are rolled back.