Table of Contents

Class WorkflowStreamConstants

Namespace
Temporalio.Extensions.WorkflowStreams
Assembly
Temporalio.Extensions.WorkflowStreams.dll

Fixed handler names and application-failure types in the Workflow Streams wire protocol.

public static class WorkflowStreamConstants
Inheritance
WorkflowStreamConstants
Inherited Members

Remarks

WARNING: Workflow Streams is experimental and may change.

Fields

OffsetQueryName

Query used to read the current global offset.

public const string OffsetQueryName = "__temporal_workflow_stream_offset"

Field Value

string

PollUpdateName

Update used to long-poll for stream items.

public const string PollUpdateName = "__temporal_workflow_stream_poll"

Field Value

string

PublishSignalName

Signal used to append an external publisher's batch.

public const string PublishSignalName = "__temporal_workflow_stream_publish"

Field Value

string

StreamDrainingErrorType

Failure type returned while pollers detach for continue-as-new.

public const string StreamDrainingErrorType = "StreamDraining"

Field Value

string

TruncateOutOfRangeErrorType

Failure type returned when truncation is requested past the log end.

public const string TruncateOutOfRangeErrorType = "TruncateOutOfRange"

Field Value

string

TruncatedOffsetErrorType

Failure type returned when a requested offset has been truncated.

public const string TruncatedOffsetErrorType = "TruncatedOffset"

Field Value

string