UNPKG

coffee-core

Version:

Coffee IT API core library

14 lines (13 loc) 456 B
import { ClientConfigInterface } from './client-config.interface'; export declare class ClientConnector { private readonly config; private readonly client; private readonly serviceName; private readonly context; constructor(config: ClientConfigInterface, client: { connect: () => Promise<void>; }, serviceName: string, context: string); connect(): Promise<void>; private retryConnection; private getRetryTime; }