Click or drag to resize
Infosoft Logo

RetryParameters Class

Provides data for jobs that can be retried at a configurable interval.
Inheritance Hierarchy
SystemObject
  Infosoft.Common.Contracts.DataContracts.Scheduler.ParametersSchedulableJobParameters
    Infosoft.Common.Contracts.DataContracts.Scheduler.ParametersRetryParameters

Namespace: Infosoft.Common.Contracts.DataContracts.Scheduler.Parameters
Assembly: Infosoft.Common.Contracts (in Infosoft.Common.Contracts.dll) Version: 4.00.0.0
Syntax
public class RetryParameters : SchedulableJobParameters

The RetryParameters type exposes the following members.

Properties
 NameDescription
Public propertyRemainingRetryCount Gets or sets the remaining retry count, i.e. the number of times the job should be retried before giving up.
Public propertyRetryIntervalInMinutes Gets or sets the retry interval in minutes.
Top
Remarks
If the job requires no other parameters, this class can be used directly as the input parameters. If the job requires other parameters in addition to the retry specification (e.g. a title code), composition should be used instead of inheritance. In other words, make a separate parameters class and include a RetryParameters instance as a property on that class, alongside the other parameters.
See Also