Properties of a CacheItem.

interface ICacheItem {
    job?: null | IOracleJob;
    variableName?: null | string;
}

Implemented by

Properties

Properties

job?: null | IOracleJob

The OracleJob to execute to yield the value to store in cache.

variableName?: null | string

The name of the variable to store in cache to reference later with ${VARIABLE_NAME}.