@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 357 B
TypeScript
/**
* Action to take should throttle limit be exceeded.
* tag: 1611
* @readonly
* @enum {number} (int)
*/
export declare enum ThrottleAction {
/** Queue inbound */
QueueInbound = 0,
/** Queue outbound */
QueueOutbound = 1,
/** Reject */
Reject = 2,
/** Disconnect */
Disconnect = 3,
/** Warning */
Warning = 4
}