Interface PollingManagerOptions

interface PollingManagerOptions {
    componentId: string;
    cyclesOnStats?: number;
    entries: TaskBaseConfig[];
    logger?: LoggerInstance;
    pollingGroup: PollingGroup;
    resource: string;
    slowCycleRatio?: number;
}

Properties

componentId: string

Component identifier

cyclesOnStats?: number

Number of cycles on stats

10
entries: TaskBaseConfig[]

Tasks configuration

Logger instance

pollingGroup: PollingGroup

Polling group assigned to this manager

resource: string

Resource identifier

slowCycleRatio?: number

Number of fast cycles to run per slow cycle

3