Class ScheduleListInfo
- Namespace
- Temporalio.Api.Schedule.V1
- Assembly
- Temporalio.dll
ScheduleListInfo is an abbreviated set of values from Schedule and ScheduleInfo that's returned in ListSchedules.
public sealed class ScheduleListInfo : IMessage<ScheduleListInfo>, IEquatable<ScheduleListInfo>, IDeepCloneable<ScheduleListInfo>, IBufferMessage, IMessage
- Inheritance
-
ScheduleListInfo
- Implements
-
IMessage<ScheduleListInfo>IDeepCloneable<ScheduleListInfo>IBufferMessageIMessage
- Inherited Members
Constructors
ScheduleListInfo()
public ScheduleListInfo()
ScheduleListInfo(ScheduleListInfo)
public ScheduleListInfo(ScheduleListInfo other)
Parameters
other
ScheduleListInfo
Fields
FutureActionTimesFieldNumber
Field number for the "future_action_times" field.
public const int FutureActionTimesFieldNumber = 6
Field Value
NotesFieldNumber
Field number for the "notes" field.
public const int NotesFieldNumber = 3
Field Value
PausedFieldNumber
Field number for the "paused" field.
public const int PausedFieldNumber = 4
Field Value
RecentActionsFieldNumber
Field number for the "recent_actions" field.
public const int RecentActionsFieldNumber = 5
Field Value
SpecFieldNumber
Field number for the "spec" field.
public const int SpecFieldNumber = 1
Field Value
WorkflowTypeFieldNumber
Field number for the "workflow_type" field.
public const int WorkflowTypeFieldNumber = 2
Field Value
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
FutureActionTimes
public RepeatedField<Timestamp> FutureActionTimes { get; }
Property Value
- RepeatedField<Timestamp>
Notes
From state:
public string Notes { get; set; }
Property Value
Parser
public static MessageParser<ScheduleListInfo> Parser { get; }
Property Value
- MessageParser<ScheduleListInfo>
Paused
public bool Paused { get; set; }
Property Value
RecentActions
From info (maybe fewer entries):
public RepeatedField<ScheduleActionResult> RecentActions { get; }
Property Value
- RepeatedField<ScheduleActionResult>
Spec
From spec: Some fields are dropped from this copy of spec: timezone_data
public ScheduleSpec Spec { get; set; }
Property Value
WorkflowType
From action: Action is a oneof field, but we need to encode this in JSON and oneof fields don't work well with JSON. If action is start_workflow, this is set:
public WorkflowType WorkflowType { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
- int
The number of bytes required to write this message to a coded output stream.
Clone()
Creates a deep clone of this object.
public ScheduleListInfo Clone()
Returns
- ScheduleListInfo
A deep clone of this object.
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object other)
Parameters
other
object
Returns
Equals(ScheduleListInfo)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(ScheduleListInfo other)
Parameters
other
ScheduleListInfoAn object to compare with this object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
public void MergeFrom(CodedInputStream input)
Parameters
input
CodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(ScheduleListInfo)
Merges the given message into this one.
public void MergeFrom(ScheduleListInfo other)
Parameters
other
ScheduleListInfo
Remarks
See the user guide for precise merge semantics.
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
public void WriteTo(CodedOutputStream output)
Parameters
output
CodedOutputStreamCoded output stream to write the data to. Must not be null.