Fibers.ErrorHandlingPolicy Enum
- Namespace
- SatorImaging.UnityFundamentals
public enum Fibers.ErrorHandlingPolicy
Defines the policy for handling errors within a fiber.
- Extension Methods
Names and Values
- Default = 0
Stop the fiber's execution, mark it as failed, and re-throw the exception.
- Skip = 1
Skip the current erroneous item and continue processing without marking the fiber as failed.
- Stop = 2
Stop the fiber's execution upon encountering an error and mark it as failed.