sdk

package
v4.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_temporal_api_sdk_v1_task_complete_metadata_proto protoreflect.FileDescriptor
View Source
var File_temporal_api_sdk_v1_workflow_metadata_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type WorkflowDefinition added in v4.11.0

type WorkflowDefinition struct {

	// A name scoped by the task queue that maps to this workflow definition.
	// If missing, this workflow is a dynamic workflow.
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// An optional workflow description provided by the application.
	// By convention, external tools may interpret its first part,
	// i.e., ending with a line break, as a summary of the description.
	Description       string                           `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	QueryDefinitions  []*WorkflowInteractionDefinition `protobuf:"bytes,3,rep,name=query_definitions,json=queryDefinitions,proto3" json:"query_definitions,omitempty"`
	SignalDefinitions []*WorkflowInteractionDefinition `protobuf:"bytes,4,rep,name=signal_definitions,json=signalDefinitions,proto3" json:"signal_definitions,omitempty"`
	UpdateDefinitions []*WorkflowInteractionDefinition `protobuf:"bytes,5,rep,name=update_definitions,json=updateDefinitions,proto3" json:"update_definitions,omitempty"`
	// contains filtered or unexported fields
}

(-- api-linter: core::0203::optional=disabled --)

func (*WorkflowDefinition) Descriptor deprecated added in v4.11.0

func (*WorkflowDefinition) Descriptor() ([]byte, []int)

Deprecated: Use WorkflowDefinition.ProtoReflect.Descriptor instead.

func (*WorkflowDefinition) GetDescription added in v4.11.0

func (x *WorkflowDefinition) GetDescription() string

func (*WorkflowDefinition) GetQueryDefinitions added in v4.11.0

func (x *WorkflowDefinition) GetQueryDefinitions() []*WorkflowInteractionDefinition

func (*WorkflowDefinition) GetSignalDefinitions added in v4.11.0

func (x *WorkflowDefinition) GetSignalDefinitions() []*WorkflowInteractionDefinition

func (*WorkflowDefinition) GetType added in v4.11.0

func (x *WorkflowDefinition) GetType() string

func (*WorkflowDefinition) GetUpdateDefinitions added in v4.11.0

func (x *WorkflowDefinition) GetUpdateDefinitions() []*WorkflowInteractionDefinition

func (*WorkflowDefinition) ProtoMessage added in v4.11.0

func (*WorkflowDefinition) ProtoMessage()

func (*WorkflowDefinition) ProtoReflect added in v4.11.0

func (x *WorkflowDefinition) ProtoReflect() protoreflect.Message

func (*WorkflowDefinition) Reset added in v4.11.0

func (x *WorkflowDefinition) Reset()

func (*WorkflowDefinition) String added in v4.11.0

func (x *WorkflowDefinition) String() string

type WorkflowInteractionDefinition added in v4.11.0

type WorkflowInteractionDefinition struct {

	// An optional name for the handler. If missing, it represents
	// a dynamic handler that processes any interactions not handled by others.
	// There is at most one dynamic handler per workflow and interaction kind.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// An optional interaction description provided by the application.
	// By convention, external tools may interpret its first part,
	// i.e., ending with a line break, as a summary of the description.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

(-- api-linter: core::0123::resource-annotation=disabled

aip.dev/not-precedent: The `name` field is optional. --)

(-- api-linter: core::0203::optional=disabled --)

func (*WorkflowInteractionDefinition) Descriptor deprecated added in v4.11.0

func (*WorkflowInteractionDefinition) Descriptor() ([]byte, []int)

Deprecated: Use WorkflowInteractionDefinition.ProtoReflect.Descriptor instead.

func (*WorkflowInteractionDefinition) GetDescription added in v4.11.0

func (x *WorkflowInteractionDefinition) GetDescription() string

func (*WorkflowInteractionDefinition) GetName added in v4.11.0

func (*WorkflowInteractionDefinition) ProtoMessage added in v4.11.0

func (*WorkflowInteractionDefinition) ProtoMessage()

func (*WorkflowInteractionDefinition) ProtoReflect added in v4.11.0

func (*WorkflowInteractionDefinition) Reset added in v4.11.0

func (x *WorkflowInteractionDefinition) Reset()

func (*WorkflowInteractionDefinition) String added in v4.11.0

type WorkflowMetadata added in v4.11.0

type WorkflowMetadata struct {

	// Metadata provided at declaration or creation time.
	Definition *WorkflowDefinition `protobuf:"bytes,1,opt,name=definition,proto3" json:"definition,omitempty"`
	// contains filtered or unexported fields
}

The name of the query to retrieve this information is `__temporal_workflow_metadata`.

func (*WorkflowMetadata) Descriptor deprecated added in v4.11.0

func (*WorkflowMetadata) Descriptor() ([]byte, []int)

Deprecated: Use WorkflowMetadata.ProtoReflect.Descriptor instead.

func (*WorkflowMetadata) GetDefinition added in v4.11.0

func (x *WorkflowMetadata) GetDefinition() *WorkflowDefinition

func (*WorkflowMetadata) ProtoMessage added in v4.11.0

func (*WorkflowMetadata) ProtoMessage()

func (*WorkflowMetadata) ProtoReflect added in v4.11.0

func (x *WorkflowMetadata) ProtoReflect() protoreflect.Message

func (*WorkflowMetadata) Reset added in v4.11.0

func (x *WorkflowMetadata) Reset()

func (*WorkflowMetadata) String added in v4.11.0

func (x *WorkflowMetadata) String() string

type WorkflowTaskCompletedMetadata

type WorkflowTaskCompletedMetadata struct {

	// Internal flags used by the core SDK. SDKs using flags must comply with the following behavior:
	//
	// During replay:
	//   - If a flag is not recognized (value is too high or not defined), it must fail the workflow
	//     task.
	//   - If a flag is recognized, it is stored in a set of used flags for the run. Code checks for
	//     that flag during and after this WFT are allowed to assume that the flag is present.
	//   - If a code check for a flag does not find the flag in the set of used flags, it must take
	//     the branch corresponding to the absence of that flag.
	//
	// During non-replay execution of new WFTs:
	//   - The SDK is free to use all flags it knows about. It must record any newly-used (IE: not
	//     previously recorded) flags when completing the WFT.
	//
	// SDKs which are too old to even know about this field at all are considered to produce
	// undefined behavior if they replay workflows which used this mechanism.
	//
	// (-- api-linter: core::0141::forbidden-types=disabled
	//
	//	aip.dev/not-precedent: These really shouldn't have negative values. --)
	CoreUsedFlags []uint32 `protobuf:"varint,1,rep,packed,name=core_used_flags,json=coreUsedFlags,proto3" json:"core_used_flags,omitempty"`
	// Flags used by the SDK lang. No attempt is made to distinguish between different SDK languages
	// here as processing a workflow with a different language than the one which authored it is
	// already undefined behavior. See `core_used_patches` for more.
	//
	// (-- api-linter: core::0141::forbidden-types=disabled
	//
	//	aip.dev/not-precedent: These really shouldn't have negative values. --)
	LangUsedFlags []uint32 `protobuf:"varint,2,rep,packed,name=lang_used_flags,json=langUsedFlags,proto3" json:"lang_used_flags,omitempty"`
	// Name of the SDK that processed the task. This is usually something like "temporal-go" and is
	// usually the same as client-name gRPC header. This should only be set if its value changed
	// since the last time recorded on the workflow (or be set on the first task).
	//
	// (-- api-linter: core::0122::name-suffix=disabled
	//
	//	aip.dev/not-precedent: We're ok with a name suffix here. --)
	SdkName string `protobuf:"bytes,3,opt,name=sdk_name,json=sdkName,proto3" json:"sdk_name,omitempty"`
	// Version of the SDK that processed the task. This is usually something like "1.20.0" and is
	// usually the same as client-version gRPC header. This should only be set if its value changed
	// since the last time recorded on the workflow (or be set on the first task).
	SdkVersion string `protobuf:"bytes,4,opt,name=sdk_version,json=sdkVersion,proto3" json:"sdk_version,omitempty"`
	// contains filtered or unexported fields
}

func (*WorkflowTaskCompletedMetadata) Descriptor deprecated

func (*WorkflowTaskCompletedMetadata) Descriptor() ([]byte, []int)

Deprecated: Use WorkflowTaskCompletedMetadata.ProtoReflect.Descriptor instead.

func (*WorkflowTaskCompletedMetadata) GetCoreUsedFlags

func (x *WorkflowTaskCompletedMetadata) GetCoreUsedFlags() []uint32

func (*WorkflowTaskCompletedMetadata) GetLangUsedFlags

func (x *WorkflowTaskCompletedMetadata) GetLangUsedFlags() []uint32

func (*WorkflowTaskCompletedMetadata) GetSdkName added in v4.7.1

func (x *WorkflowTaskCompletedMetadata) GetSdkName() string

func (*WorkflowTaskCompletedMetadata) GetSdkVersion added in v4.7.1

func (x *WorkflowTaskCompletedMetadata) GetSdkVersion() string

func (*WorkflowTaskCompletedMetadata) ProtoMessage

func (*WorkflowTaskCompletedMetadata) ProtoMessage()

func (*WorkflowTaskCompletedMetadata) ProtoReflect

func (*WorkflowTaskCompletedMetadata) Reset

func (x *WorkflowTaskCompletedMetadata) Reset()

func (*WorkflowTaskCompletedMetadata) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL