Table of Contents

Class JobExecutionOptions

Namespace
Apache.Ignite.Compute
Assembly
Apache.Ignite.dll

Job execution options.

public sealed record JobExecutionOptions : IEquatable<JobExecutionOptions>
Inheritance
JobExecutionOptions
Implements
Inherited Members

Constructors

JobExecutionOptions()

Initializes a new instance of the JobExecutionOptions class.

public JobExecutionOptions()

JobExecutionOptions(int, int, JobExecutorType)

Job execution options.

public JobExecutionOptions(int Priority = 0, int MaxRetries = 0, JobExecutorType ExecutorType = JobExecutorType.JavaEmbedded)

Parameters

Priority int

Job execution priority.

MaxRetries int

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

ExecutorType JobExecutorType

Job executor type.

Fields

Default

Default job execution options.

public static readonly JobExecutionOptions Default

Field Value

JobExecutionOptions

Properties

ExecutorType

Job executor type.

public JobExecutorType ExecutorType { get; init; }

Property Value

JobExecutorType

MaxRetries

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

public int MaxRetries { get; init; }

Property Value

int

Priority

Job execution priority.

public int Priority { get; init; }

Property Value

int