Class GetWorkerBuildIdCompatibilityInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
public record GetWorkerBuildIdCompatibilityInput : IEquatable<GetWorkerBuildIdCompatibilityInput>
- Inheritance
-
GetWorkerBuildIdCompatibilityInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
GetWorkerBuildIdCompatibilityInput(string, int, RpcOptions?)
public GetWorkerBuildIdCompatibilityInput(string TaskQueue, int MaxSets, RpcOptions? RpcOptions)
Parameters
TaskQueue
stringThe Task Queue to target.
MaxSets
intThe maximum number of sets to return. If not specified, all sets will be returned.
RpcOptions
RpcOptionsRPC options.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
MaxSets
The maximum number of sets to return. If not specified, all sets will be returned.
public int MaxSets { get; init; }
Property Value
RpcOptions
RPC options.
public RpcOptions? RpcOptions { get; init; }
Property Value
TaskQueue
The Task Queue to target.
public string TaskQueue { get; init; }