Properties of an OracleJob.

interface IOracleJob {
    tasks?: ITask[];
    weight?: number;
}

Implemented by

Properties

Properties

tasks?: ITask[]

The chain of tasks to perform for this OracleJob.

weight?: number

The weight to assign to this job's result when aggregating multiple job results. A higher weight means this job's result will have more influence on the final aggregated value. This value must be greater than or equal to 0.