class documentation

class HandlerUnfinishedPolicy(Enum): (source)

View In Hierarchy

Actions taken if a workflow terminates with running handlers.

Policy defining actions taken when a workflow exits while update or signal handlers are running. The workflow exit may be due to successful return, failure, cancellation, or continue-as-new.

Constant ABANDON Abandon the handler.
Constant WARN_AND_ABANDON Issue a warning in addition to abandoning.

Abandon the handler.

In the case of an update handler this means that the client will receive an error rather than the update result.

Value
2
WARN_AND_ABANDON: int = (source)

Issue a warning in addition to abandoning.

Value
1