Properties of a BoundTask.

interface IBoundTask {
    lowerBound?: null | IOracleJob;
    lowerBoundValue?: null | string;
    onExceedsLowerBound?: null | IOracleJob;
    onExceedsLowerBoundValue?: null | string;
    onExceedsUpperBound?: null | IOracleJob;
    onExceedsUpperBoundValue?: null | string;
    upperBound?: null | IOracleJob;
    upperBoundValue?: null | string;
}

Implemented by

Properties

lowerBound?: null | IOracleJob

The OracleJob to execute for the lower bound value.

lowerBoundValue?: null | string

The value to use for the lower bound. Can be set to a ${CACHE_KEY}.

onExceedsLowerBound?: null | IOracleJob

The OracleJob to execute if the lower bound is exceeded.

onExceedsLowerBoundValue?: null | string

The value to use if the lower bound is exceeded. Can be set to a ${CACHE_KEY}.

onExceedsUpperBound?: null | IOracleJob

The OracleJob to execute if the upper bound is exceeded.

onExceedsUpperBoundValue?: null | string

The value to use if the upper bound is exceeded. Can be set to a ${CACHE_KEY}.

upperBound?: null | IOracleJob

The OracleJob to execute for the upper bound value.

upperBoundValue?: null | string

The value to use for the upper bound. Can be set to a ${CACHE_KEY}.