@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 373 B
TypeScript
/**
* Indicates the status of a network connection
* tag: 928
* @readonly
* @enum {number} (int)
*/
export declare enum StatusValue {
/** Connected */
Connected = 1,
/** Not Connected - down expected up */
NotConnectedUnexpected = 2,
/** Not Connected - down expected down */
NotConnectedExpected = 3,
/** In Process */
InProcess = 4
}