Class ReceiverExecutionOptions
Data streamer receiver execution options.
public sealed record ReceiverExecutionOptions : IEquatable<ReceiverExecutionOptions>
- Inheritance
-
ReceiverExecutionOptions
- Implements
- Inherited Members
Constructors
ReceiverExecutionOptions(int, int, JobExecutorType)
Data streamer receiver execution options.
public ReceiverExecutionOptions(int Priority = 0, int MaxRetries = 0, JobExecutorType ExecutorType = JobExecutorType.JavaEmbedded)
Parameters
Priority
intExecution priority.
MaxRetries
intNumber of times to retry receiver execution in case of failure, 0 to not retry.
ExecutorType
JobExecutorTypeExecutor type.
Fields
Default
Default job execution options.
public static readonly ReceiverExecutionOptions Default
Field Value
Properties
ExecutorType
Executor type.
public JobExecutorType ExecutorType { get; init; }
Property Value
MaxRetries
Number of times to retry receiver execution in case of failure, 0 to not retry.
public int MaxRetries { get; init; }
Property Value
Priority
Execution priority.
public int Priority { get; init; }