jspurefix
Version:
pure node js fix engine
17 lines (16 loc) • 731 B
TypeScript
import { FixmlSession } from '../../../transport/fixml';
import { MsgView } from '../../../buffer';
import { IJsFixConfig } from '../../../config';
export declare class HttpServer extends FixmlSession {
readonly config: IJsFixConfig;
private readonly logger;
private readonly fixLog;
private readonly factory;
constructor(config: IJsFixConfig);
protected onApplicationMsg(msgType: string, view: MsgView): void;
protected onDecoded(msgType: string, txt: string): void;
protected onEncoded(msgType: string, txt: string): void;
protected onLogon(view: MsgView, user: string, password: string): boolean;
protected onReady(view: MsgView): void;
protected onStopped(): void;
}