Table of Contents

Class ReceiverExecutionOptions

Namespace
Apache.Ignite.Table
Assembly
Apache.Ignite.dll

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 int

Execution priority.

MaxRetries int

Number of times to retry receiver execution in case of failure, 0 to not retry.

ExecutorType JobExecutorType

Executor type.

Fields

Default

Default job execution options.

public static readonly ReceiverExecutionOptions Default

Field Value

ReceiverExecutionOptions

Properties

ExecutorType

Executor type.

public JobExecutorType ExecutorType { get; init; }

Property Value

JobExecutorType

MaxRetries

Number of times to retry receiver execution in case of failure, 0 to not retry.

public int MaxRetries { get; init; }

Property Value

int

Priority

Execution priority.

public int Priority { get; init; }

Property Value

int