Class GetWorkerTaskReachabilityResponse
- Namespace
- Temporalio.Api.WorkflowService.V1
- Assembly
- Temporalio.dll
Deprecated. Use DescribeTaskQueue
.
public sealed class GetWorkerTaskReachabilityResponse : IMessage<GetWorkerTaskReachabilityResponse>, IEquatable<GetWorkerTaskReachabilityResponse>, IDeepCloneable<GetWorkerTaskReachabilityResponse>, IBufferMessage, IMessage
- Inheritance
-
GetWorkerTaskReachabilityResponse
- Implements
-
IMessage<GetWorkerTaskReachabilityResponse>IDeepCloneable<GetWorkerTaskReachabilityResponse>IBufferMessageIMessage
- Inherited Members
Constructors
GetWorkerTaskReachabilityResponse()
public GetWorkerTaskReachabilityResponse()
GetWorkerTaskReachabilityResponse(GetWorkerTaskReachabilityResponse)
public GetWorkerTaskReachabilityResponse(GetWorkerTaskReachabilityResponse other)
Parameters
Fields
BuildIdReachabilityFieldNumber
Field number for the "build_id_reachability" field.
public const int BuildIdReachabilityFieldNumber = 1
Field Value
Properties
BuildIdReachability
Task reachability, broken down by build id and then task queue. When requesting a large number of task queues or all task queues associated with the given build ids in a namespace, all task queues will be listed in the response but some of them may not contain reachability information due to a server enforced limit. When reaching the limit, task queues that reachability information could not be retrieved for will be marked with a single TASK_REACHABILITY_UNSPECIFIED entry. The caller may issue another call to get the reachability for those task queues.
Open source users can adjust this limit by setting the server's dynamic config value for
limit.reachabilityTaskQueueScan
with the caveat that this call can strain the visibility store.
public RepeatedField<BuildIdReachability> BuildIdReachability { get; }
Property Value
- RepeatedField<BuildIdReachability>
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
Parser
public static MessageParser<GetWorkerTaskReachabilityResponse> Parser { get; }
Property Value
- MessageParser<GetWorkerTaskReachabilityResponse>
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 GetWorkerTaskReachabilityResponse Clone()
Returns
- GetWorkerTaskReachabilityResponse
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(GetWorkerTaskReachabilityResponse)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(GetWorkerTaskReachabilityResponse other)
Parameters
other
GetWorkerTaskReachabilityResponseAn 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(GetWorkerTaskReachabilityResponse)
Merges the given message into this one.
public void MergeFrom(GetWorkerTaskReachabilityResponse 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.