Table of Contents

Enum ParentClosePolicy

Namespace
Temporalio.Workflows
Assembly
Temporalio.dll

How a workflow child will be handled when its parent workflow closes.

public enum ParentClosePolicy

Fields

Abandon = 2

Child workflow will do nothing.

None = 0

No value set and will internally default. This should not be used.

RequestCancel = 3

Cancellation will be requested on the child workflow.

Terminate = 1

Child workflow will be terminated.