adding quickfix library

This commit is contained in:
Ramiro Paz
2026-03-12 12:08:34 -03:00
parent 9e55c5c562
commit c09a1fd21a
1311 changed files with 1887342 additions and 2 deletions

View File

@ -0,0 +1,15 @@
package internal
// Event is an abstraction for session events.
type Event int
const (
// PeerTimeout indicates the session peer has become unresponsive.
PeerTimeout Event = iota
// NeedHeartbeat indicates the session should send a heartbeat.
NeedHeartbeat
// LogonTimeout indicates the peer has not sent a logon request.
LogonTimeout
// LogoutTimeout indicates the peer has not sent a logout request.
LogoutTimeout
)