fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
12 lines (11 loc) • 569 B
TypeScript
import type { IFIXParser } from '../IFIXParser.ts';
import type { Message } from '../message/Message.ts';
/**
* Handles the SequenceReset message in a FIX session.
* This function processes the SequenceReset message and updates the message sequence number
* to the new value specified in the message.
*
* @param {IFIXParser} parser - The FIX parser instance handling the session
* @param {Message} message - The SequenceReset message containing the new sequence number
*/
export declare const handleSequenceReset: (parser: IFIXParser, message: Message) => void;