@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.
15 lines • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResendRequestMessage = void 0;
const message_1 = require("../../message/message");
const fields_1 = require("../../fields");
class ResendRequestMessage extends message_1.Message {
constructor(beginSeqNo, endSeqNo) {
super();
this.setField(fields_1.Fields.MsgType, fields_1.MsgType.ResendRequest);
this.setField(fields_1.Fields.BeginSeqNo, beginSeqNo);
this.setField(fields_1.Fields.EndSeqNo, endSeqNo);
}
}
exports.ResendRequestMessage = ResendRequestMessage;
//# sourceMappingURL=resend.request.js.map