2018-08-12 14:42:09 +00:00
|
|
|
import { ElasticLog, IStandardLogParams } from './elasticlog.classes.elasticlog';
|
2018-01-27 18:16:05 +00:00
|
|
|
export declare class LogScheduler {
|
|
|
|
elasticLogRef: ElasticLog<any>;
|
|
|
|
logsScheduled: boolean;
|
|
|
|
logStorage: any[];
|
|
|
|
constructor(elasticLogRefArg: ElasticLog<any>);
|
|
|
|
addFailedLog(objectArg: any | IStandardLogParams): void;
|
|
|
|
scheduleLog(logObject: any): void;
|
|
|
|
setRetry(): void;
|
|
|
|
deferSend(): void;
|
|
|
|
}
|