Class GetSystemInfoResponse.Types.Capabilities
- Namespace
- Temporalio.Api.WorkflowService.V1
- Assembly
- Temporalio.dll
System capability details.
public sealed class GetSystemInfoResponse.Types.Capabilities : IMessage<GetSystemInfoResponse.Types.Capabilities>, IEquatable<GetSystemInfoResponse.Types.Capabilities>, IDeepCloneable<GetSystemInfoResponse.Types.Capabilities>, IBufferMessage, IMessage
- Inheritance
-
GetSystemInfoResponse.Types.Capabilities
- Implements
-
IBufferMessageIMessage
- Inherited Members
Constructors
Capabilities()
public Capabilities()
Capabilities(Capabilities)
public Capabilities(GetSystemInfoResponse.Types.Capabilities other)
Parameters
Fields
ActivityFailureIncludeHeartbeatFieldNumber
Field number for the "activity_failure_include_heartbeat" field.
public const int ActivityFailureIncludeHeartbeatFieldNumber = 3
Field Value
BuildIdBasedVersioningFieldNumber
Field number for the "build_id_based_versioning" field.
public const int BuildIdBasedVersioningFieldNumber = 6
Field Value
CountGroupByExecutionStatusFieldNumber
Field number for the "count_group_by_execution_status" field.
public const int CountGroupByExecutionStatusFieldNumber = 10
Field Value
EagerWorkflowStartFieldNumber
Field number for the "eager_workflow_start" field.
public const int EagerWorkflowStartFieldNumber = 8
Field Value
EncodedFailureAttributesFieldNumber
Field number for the "encoded_failure_attributes" field.
public const int EncodedFailureAttributesFieldNumber = 5
Field Value
InternalErrorDifferentiationFieldNumber
Field number for the "internal_error_differentiation" field.
public const int InternalErrorDifferentiationFieldNumber = 2
Field Value
SdkMetadataFieldNumber
Field number for the "sdk_metadata" field.
public const int SdkMetadataFieldNumber = 9
Field Value
SignalAndQueryHeaderFieldNumber
Field number for the "signal_and_query_header" field.
public const int SignalAndQueryHeaderFieldNumber = 1
Field Value
SupportsSchedulesFieldNumber
Field number for the "supports_schedules" field.
public const int SupportsSchedulesFieldNumber = 4
Field Value
UpsertMemoFieldNumber
Field number for the "upsert_memo" field.
public const int UpsertMemoFieldNumber = 7
Field Value
Properties
ActivityFailureIncludeHeartbeat
True if RespondActivityTaskFailed API supports including heartbeat details
public bool ActivityFailureIncludeHeartbeat { get; set; }
Property Value
BuildIdBasedVersioning
True if server supports dispatching Workflow and Activity tasks based on a worker's build_id (see: https://github.com/temporalio/proposals/blob/a123af3b559f43db16ea6dd31870bfb754c4dc5e/versioning/worker-versions.md)
public bool BuildIdBasedVersioning { get; set; }
Property Value
CountGroupByExecutionStatus
True if the server supports count group by execution status (-- api-linter: core::0140::prepositions=disabled --)
public bool CountGroupByExecutionStatus { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
EagerWorkflowStart
True if server supports eager workflow task dispatching for the StartWorkflowExecution API
public bool EagerWorkflowStart { get; set; }
Property Value
EncodedFailureAttributes
True if server uses protos that include temporal.api.failure.v1.Failure.encoded_attributes
public bool EncodedFailureAttributes { get; set; }
Property Value
InternalErrorDifferentiation
True if internal errors are differentiated from other types of errors for purposes of retrying non-internal errors.
When unset/false, clients retry all failures. When true, clients should only retry non-internal errors.
public bool InternalErrorDifferentiation { get; set; }
Property Value
Parser
public static MessageParser<GetSystemInfoResponse.Types.Capabilities> Parser { get; }
Property Value
- MessageParser<GetSystemInfoResponse.Types.Capabilities>
SdkMetadata
True if the server knows about the sdk metadata field on WFT completions and will record it in history
public bool SdkMetadata { get; set; }
Property Value
SignalAndQueryHeader
True if signal and query headers are supported.
public bool SignalAndQueryHeader { get; set; }
Property Value
SupportsSchedules
Supports scheduled workflow features.
public bool SupportsSchedules { get; set; }
Property Value
UpsertMemo
True if server supports upserting workflow memo
public bool UpsertMemo { 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 GetSystemInfoResponse.Types.Capabilities Clone()
Returns
- GetSystemInfoResponse.Types.Capabilities
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(Capabilities)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(GetSystemInfoResponse.Types.Capabilities other)
Parameters
other
GetSystemInfoResponse.Types.CapabilitiesAn 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(Capabilities)
Merges the given message into this one.
public void MergeFrom(GetSystemInfoResponse.Types.Capabilities other)
Parameters
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.