22 lines
623 B
TypeScript
22 lines
623 B
TypeScript
export declare class ClientServices {
|
|
private connection;
|
|
private sessionInitialized;
|
|
private retryTimer;
|
|
private initializeAgentId;
|
|
private initializeLocaleId;
|
|
constructor();
|
|
start(): void;
|
|
stop(): void;
|
|
private scheduleRetry;
|
|
/**
|
|
* Returns as soon the result indicates that something else went wrong rather than transmitting.
|
|
* @param command
|
|
* @param retryInterval
|
|
*/
|
|
private executeCommandWithRetry;
|
|
private sendInitializeAgent;
|
|
private sendLocaleUpdate;
|
|
private handleNotifyClientsOnline;
|
|
}
|
|
export declare let clientServices: ClientServices;
|