Documentation ¶
Overview ¶
Code generated by protoc-gen-go-helpers. DO NOT EDIT.
Index ¶
- Variables
- type TaskKey
- func (*TaskKey) Descriptor() ([]byte, []int)deprecated
- func (this *TaskKey) Equal(that interface{}) bool
- func (x *TaskKey) GetFireTime() *timestamppb.Timestamp
- func (x *TaskKey) GetTaskId() int64
- func (val *TaskKey) Marshal() ([]byte, error)
- func (*TaskKey) ProtoMessage()
- func (x *TaskKey) ProtoReflect() protoreflect.Message
- func (x *TaskKey) Reset()
- func (val *TaskKey) Size() int
- func (x *TaskKey) String() string
- func (val *TaskKey) Unmarshal(buf []byte) error
- type TaskRange
- func (*TaskRange) Descriptor() ([]byte, []int)deprecated
- func (this *TaskRange) Equal(that interface{}) bool
- func (x *TaskRange) GetExclusiveMaxTaskKey() *TaskKey
- func (x *TaskRange) GetInclusiveMinTaskKey() *TaskKey
- func (val *TaskRange) Marshal() ([]byte, error)
- func (*TaskRange) ProtoMessage()
- func (x *TaskRange) ProtoReflect() protoreflect.Message
- func (x *TaskRange) Reset()
- func (val *TaskRange) Size() int
- func (x *TaskRange) String() string
- func (val *TaskRange) Unmarshal(buf []byte) error
- type TransientWorkflowTaskInfo
- func (*TransientWorkflowTaskInfo) Descriptor() ([]byte, []int)deprecated
- func (this *TransientWorkflowTaskInfo) Equal(that interface{}) bool
- func (x *TransientWorkflowTaskInfo) GetHistorySuffix() []*v1.HistoryEvent
- func (val *TransientWorkflowTaskInfo) Marshal() ([]byte, error)
- func (*TransientWorkflowTaskInfo) ProtoMessage()
- func (x *TransientWorkflowTaskInfo) ProtoReflect() protoreflect.Message
- func (x *TransientWorkflowTaskInfo) Reset()
- func (val *TransientWorkflowTaskInfo) Size() int
- func (x *TransientWorkflowTaskInfo) String() string
- func (val *TransientWorkflowTaskInfo) Unmarshal(buf []byte) error
- type VersionHistories
- func (*VersionHistories) Descriptor() ([]byte, []int)deprecated
- func (this *VersionHistories) Equal(that interface{}) bool
- func (x *VersionHistories) GetCurrentVersionHistoryIndex() int32
- func (x *VersionHistories) GetHistories() []*VersionHistory
- func (val *VersionHistories) Marshal() ([]byte, error)
- func (*VersionHistories) ProtoMessage()
- func (x *VersionHistories) ProtoReflect() protoreflect.Message
- func (x *VersionHistories) Reset()
- func (val *VersionHistories) Size() int
- func (x *VersionHistories) String() string
- func (val *VersionHistories) Unmarshal(buf []byte) error
- type VersionHistory
- func (*VersionHistory) Descriptor() ([]byte, []int)deprecated
- func (this *VersionHistory) Equal(that interface{}) bool
- func (x *VersionHistory) GetBranchToken() []byte
- func (x *VersionHistory) GetItems() []*VersionHistoryItem
- func (val *VersionHistory) Marshal() ([]byte, error)
- func (*VersionHistory) ProtoMessage()
- func (x *VersionHistory) ProtoReflect() protoreflect.Message
- func (x *VersionHistory) Reset()
- func (val *VersionHistory) Size() int
- func (x *VersionHistory) String() string
- func (val *VersionHistory) Unmarshal(buf []byte) error
- type VersionHistoryItem
- func (*VersionHistoryItem) Descriptor() ([]byte, []int)deprecated
- func (this *VersionHistoryItem) Equal(that interface{}) bool
- func (x *VersionHistoryItem) GetEventId() int64
- func (x *VersionHistoryItem) GetVersion() int64
- func (val *VersionHistoryItem) Marshal() ([]byte, error)
- func (*VersionHistoryItem) ProtoMessage()
- func (x *VersionHistoryItem) ProtoReflect() protoreflect.Message
- func (x *VersionHistoryItem) Reset()
- func (val *VersionHistoryItem) Size() int
- func (x *VersionHistoryItem) String() string
- func (val *VersionHistoryItem) Unmarshal(buf []byte) error
Constants ¶
This section is empty.
Variables ¶
var File_temporal_server_api_history_v1_message_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type TaskKey ¶ added in v1.16.0
type TaskKey struct { TaskId int64 `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"` FireTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=fire_time,json=fireTime,proto3" json:"fire_time,omitempty"` // contains filtered or unexported fields }
func (*TaskKey) Descriptor
deprecated
added in
v1.16.0
func (*TaskKey) Equal ¶ added in v1.16.0
Equal returns whether two TaskKey values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*TaskKey) GetFireTime ¶ added in v1.16.0
func (x *TaskKey) GetFireTime() *timestamppb.Timestamp
func (*TaskKey) Marshal ¶ added in v1.16.0
Marshal an object of type TaskKey to the protobuf v3 wire format
func (*TaskKey) ProtoMessage ¶ added in v1.16.0
func (*TaskKey) ProtoMessage()
func (*TaskKey) ProtoReflect ¶ added in v1.23.0
func (x *TaskKey) ProtoReflect() protoreflect.Message
type TaskRange ¶ added in v1.16.0
type TaskRange struct { InclusiveMinTaskKey *TaskKey `protobuf:"bytes,1,opt,name=inclusive_min_task_key,json=inclusiveMinTaskKey,proto3" json:"inclusive_min_task_key,omitempty"` ExclusiveMaxTaskKey *TaskKey `protobuf:"bytes,2,opt,name=exclusive_max_task_key,json=exclusiveMaxTaskKey,proto3" json:"exclusive_max_task_key,omitempty"` // contains filtered or unexported fields }
func (*TaskRange) Descriptor
deprecated
added in
v1.16.0
func (*TaskRange) Equal ¶ added in v1.16.0
Equal returns whether two TaskRange values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*TaskRange) GetExclusiveMaxTaskKey ¶ added in v1.16.0
func (*TaskRange) GetInclusiveMinTaskKey ¶ added in v1.16.0
func (*TaskRange) Marshal ¶ added in v1.16.0
Marshal an object of type TaskRange to the protobuf v3 wire format
func (*TaskRange) ProtoMessage ¶ added in v1.16.0
func (*TaskRange) ProtoMessage()
func (*TaskRange) ProtoReflect ¶ added in v1.23.0
func (x *TaskRange) ProtoReflect() protoreflect.Message
type TransientWorkflowTaskInfo ¶
type TransientWorkflowTaskInfo struct { // A list of history events that are to be appended to the "real" workflow history. HistorySuffix []*v1.HistoryEvent `protobuf:"bytes,3,rep,name=history_suffix,json=historySuffix,proto3" json:"history_suffix,omitempty"` // contains filtered or unexported fields }
func (*TransientWorkflowTaskInfo) Descriptor
deprecated
func (*TransientWorkflowTaskInfo) Descriptor() ([]byte, []int)
Deprecated: Use TransientWorkflowTaskInfo.ProtoReflect.Descriptor instead.
func (*TransientWorkflowTaskInfo) Equal ¶
func (this *TransientWorkflowTaskInfo) Equal(that interface{}) bool
Equal returns whether two TransientWorkflowTaskInfo values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*TransientWorkflowTaskInfo) GetHistorySuffix ¶ added in v1.17.3
func (x *TransientWorkflowTaskInfo) GetHistorySuffix() []*v1.HistoryEvent
func (*TransientWorkflowTaskInfo) Marshal ¶
func (val *TransientWorkflowTaskInfo) Marshal() ([]byte, error)
Marshal an object of type TransientWorkflowTaskInfo to the protobuf v3 wire format
func (*TransientWorkflowTaskInfo) ProtoMessage ¶
func (*TransientWorkflowTaskInfo) ProtoMessage()
func (*TransientWorkflowTaskInfo) ProtoReflect ¶ added in v1.23.0
func (x *TransientWorkflowTaskInfo) ProtoReflect() protoreflect.Message
func (*TransientWorkflowTaskInfo) Reset ¶
func (x *TransientWorkflowTaskInfo) Reset()
func (*TransientWorkflowTaskInfo) Size ¶
func (val *TransientWorkflowTaskInfo) Size() int
Size returns the size of the object, in bytes, once serialized
func (*TransientWorkflowTaskInfo) String ¶
func (x *TransientWorkflowTaskInfo) String() string
func (*TransientWorkflowTaskInfo) Unmarshal ¶
func (val *TransientWorkflowTaskInfo) Unmarshal(buf []byte) error
Unmarshal an object of type TransientWorkflowTaskInfo from the protobuf v3 wire format
type VersionHistories ¶
type VersionHistories struct { CurrentVersionHistoryIndex int32 `` /* 144-byte string literal not displayed */ Histories []*VersionHistory `protobuf:"bytes,2,rep,name=histories,proto3" json:"histories,omitempty"` // contains filtered or unexported fields }
VersionHistories contains all version histories from all branches.
func (*VersionHistories) Descriptor
deprecated
func (*VersionHistories) Descriptor() ([]byte, []int)
Deprecated: Use VersionHistories.ProtoReflect.Descriptor instead.
func (*VersionHistories) Equal ¶
func (this *VersionHistories) Equal(that interface{}) bool
Equal returns whether two VersionHistories values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*VersionHistories) GetCurrentVersionHistoryIndex ¶
func (x *VersionHistories) GetCurrentVersionHistoryIndex() int32
func (*VersionHistories) GetHistories ¶
func (x *VersionHistories) GetHistories() []*VersionHistory
func (*VersionHistories) Marshal ¶
func (val *VersionHistories) Marshal() ([]byte, error)
Marshal an object of type VersionHistories to the protobuf v3 wire format
func (*VersionHistories) ProtoMessage ¶
func (*VersionHistories) ProtoMessage()
func (*VersionHistories) ProtoReflect ¶ added in v1.23.0
func (x *VersionHistories) ProtoReflect() protoreflect.Message
func (*VersionHistories) Reset ¶
func (x *VersionHistories) Reset()
func (*VersionHistories) Size ¶
func (val *VersionHistories) Size() int
Size returns the size of the object, in bytes, once serialized
func (*VersionHistories) String ¶
func (x *VersionHistories) String() string
func (*VersionHistories) Unmarshal ¶
func (val *VersionHistories) Unmarshal(buf []byte) error
Unmarshal an object of type VersionHistories from the protobuf v3 wire format
type VersionHistory ¶
type VersionHistory struct { BranchToken []byte `protobuf:"bytes,1,opt,name=branch_token,json=branchToken,proto3" json:"branch_token,omitempty"` Items []*VersionHistoryItem `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"` // contains filtered or unexported fields }
VersionHistory contains the version history of a branch.
func (*VersionHistory) Descriptor
deprecated
func (*VersionHistory) Descriptor() ([]byte, []int)
Deprecated: Use VersionHistory.ProtoReflect.Descriptor instead.
func (*VersionHistory) Equal ¶
func (this *VersionHistory) Equal(that interface{}) bool
Equal returns whether two VersionHistory values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*VersionHistory) GetBranchToken ¶
func (x *VersionHistory) GetBranchToken() []byte
func (*VersionHistory) GetItems ¶
func (x *VersionHistory) GetItems() []*VersionHistoryItem
func (*VersionHistory) Marshal ¶
func (val *VersionHistory) Marshal() ([]byte, error)
Marshal an object of type VersionHistory to the protobuf v3 wire format
func (*VersionHistory) ProtoMessage ¶
func (*VersionHistory) ProtoMessage()
func (*VersionHistory) ProtoReflect ¶ added in v1.23.0
func (x *VersionHistory) ProtoReflect() protoreflect.Message
func (*VersionHistory) Reset ¶
func (x *VersionHistory) Reset()
func (*VersionHistory) Size ¶
func (val *VersionHistory) Size() int
Size returns the size of the object, in bytes, once serialized
func (*VersionHistory) String ¶
func (x *VersionHistory) String() string
func (*VersionHistory) Unmarshal ¶
func (val *VersionHistory) Unmarshal(buf []byte) error
Unmarshal an object of type VersionHistory from the protobuf v3 wire format
type VersionHistoryItem ¶
type VersionHistoryItem struct { EventId int64 `protobuf:"varint,1,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"` Version int64 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"` // contains filtered or unexported fields }
VersionHistoryItem contains signal eventId and the corresponding version.
func (*VersionHistoryItem) Descriptor
deprecated
func (*VersionHistoryItem) Descriptor() ([]byte, []int)
Deprecated: Use VersionHistoryItem.ProtoReflect.Descriptor instead.
func (*VersionHistoryItem) Equal ¶
func (this *VersionHistoryItem) Equal(that interface{}) bool
Equal returns whether two VersionHistoryItem values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*VersionHistoryItem) GetEventId ¶
func (x *VersionHistoryItem) GetEventId() int64
func (*VersionHistoryItem) GetVersion ¶
func (x *VersionHistoryItem) GetVersion() int64
func (*VersionHistoryItem) Marshal ¶
func (val *VersionHistoryItem) Marshal() ([]byte, error)
Marshal an object of type VersionHistoryItem to the protobuf v3 wire format
func (*VersionHistoryItem) ProtoMessage ¶
func (*VersionHistoryItem) ProtoMessage()
func (*VersionHistoryItem) ProtoReflect ¶ added in v1.23.0
func (x *VersionHistoryItem) ProtoReflect() protoreflect.Message
func (*VersionHistoryItem) Reset ¶
func (x *VersionHistoryItem) Reset()
func (*VersionHistoryItem) Size ¶
func (val *VersionHistoryItem) Size() int
Size returns the size of the object, in bytes, once serialized
func (*VersionHistoryItem) String ¶
func (x *VersionHistoryItem) String() string
func (*VersionHistoryItem) Unmarshal ¶
func (val *VersionHistoryItem) Unmarshal(buf []byte) error
Unmarshal an object of type VersionHistoryItem from the protobuf v3 wire format