Table of Contents

Enum HandlerUnfinishedPolicy

Namespace
Temporalio.Workflows
Assembly
Temporalio.dll

Actions taken if a workflow terminates with running handlers.

public enum HandlerUnfinishedPolicy

Fields

Abandon = 1

Abandon the handler.

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

WarnAndAbandon = 0

Issue a warning in addition to abandoning.

Remarks

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.