@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 337 B
TypeScript
/**
* Describes action recipient should take if a throttle limit were exceeded.
* tag: 1685
* @readonly
* @enum {number} (int)
*/
export declare enum ThrottleInst {
/** Reject if throttle limit exceeded */
RejectIfThrottleLimitExceeded = 0,
/** Queue if throttle limit exceeded */
QueueIfThrottleLimitExceeded = 1
}