@synerty/orb-vortexjs
Version:
Custom observable data serialisation and routing based on Angular2
14 lines (13 loc) • 549 B
TypeScript
import { VortexClientABC } from "./VortexClientABC";
import { NgZone } from "@angular/core";
import { VortexStatusService } from "./VortexStatusService";
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, zone: NgZone, url: string);
protected shutdown(): void;
protected sendVortexMsg(vortexMsgs: string[]): void;
}