@synerty/vortexjs
Version:
Custom observable data serialisation and routing based on Angular 2+
15 lines (14 loc) • 639 B
TypeScript
import { VortexClientABC } from "./VortexClientABC";
import { VortexStatusService } from "./VortexStatusService";
import { HttpHeaders } from "@angular/common/http";
export declare class VortexClientHttp extends VortexClientABC {
/**
* RapUI VortexService, This class is responsible for sending and receiving payloads to/from
* the server.
*/
private lastConn;
constructor(vortexStatusService: VortexStatusService, url: string, vortexClientName: string, headers: HttpHeaders);
protected shutdown(): Promise<void>;
setClosedByConnection(): void;
protected sendVortexMsg(vortexMsgs: string[]): void;
}