Enum WorkResponseStatus
public enum WorkResponseStatus
Fields
Failure = 2
By default, the system will suspense the Flow.
ForceRetry = 4
Force a retry, skipping any retry count limits.
The retry count limit is ignored, and it is also not updated.
The retry delay is only used if it is specified in Properties with the key RetryDelay. Any configured default delay is not used.
This is generally intended to force a suspended Job to retry. If the Job fails again, it will be suspended again, since while the retry count is ignored for this retry attempt, it will be taken into account for the next (non-forced) retry attempt.
Retry = 3
By default, the system will automatically schedule a retry operation. See RetryOptions.
Success = 1