UNPKG

@sotatech/nest-quickfix

Version:

A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.

8 lines (7 loc) 184 B
export declare class PriorityQueue<T> { private items; enqueue(item: T, priority: number): void; dequeue(): T | undefined; isEmpty(): boolean; getSize(): number; }