Table of Contents

Class BuildIdReachability

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Contains information about the reachability of a specific Build ID.

public record BuildIdReachability : IEquatable<BuildIdReachability>
Inheritance
BuildIdReachability
Implements
Inherited Members

Constructors

BuildIdReachability(IReadOnlyDictionary<string, IReadOnlyCollection<TaskReachability>>, IReadOnlyCollection<string>)

Contains information about the reachability of a specific Build ID.

public BuildIdReachability(IReadOnlyDictionary<string, IReadOnlyCollection<TaskReachability>> TaskQueueReachability, IReadOnlyCollection<string> UnretrievedTaskQueues)

Parameters

TaskQueueReachability IReadOnlyDictionary<string, IReadOnlyCollection<TaskReachability>>

Maps Task Queue names to the reachability status of the Build ID on that queue. If the value is an empty list, the Build ID is not reachable on that queue.

UnretrievedTaskQueues IReadOnlyCollection<string>

If any Task Queues could not be retrieved because the server limits the number that can be queried at once, they will be listed here.

Properties

TaskQueueReachability

Maps Task Queue names to the reachability status of the Build ID on that queue. If the value is an empty list, the Build ID is not reachable on that queue.

public IReadOnlyDictionary<string, IReadOnlyCollection<TaskReachability>> TaskQueueReachability { get; init; }

Property Value

IReadOnlyDictionary<string, IReadOnlyCollection<TaskReachability>>

UnretrievedTaskQueues

If any Task Queues could not be retrieved because the server limits the number that can be queried at once, they will be listed here.

public IReadOnlyCollection<string> UnretrievedTaskQueues { get; init; }

Property Value

IReadOnlyCollection<string>