-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathsession_settings.go
More file actions
35 lines (31 loc) · 1.05 KB
/
session_settings.go
File metadata and controls
35 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package internal
import "time"
// SessionSettings stores all of the configuration for a given session.
type SessionSettings struct {
ResetOnLogon bool
RefreshOnLogon bool
ResetOnLogout bool
ResetOnDisconnect bool
HeartBtInt time.Duration
HeartBtIntOverride bool
SessionTime *TimeRange
InitiateLogon bool
ResendRequestChunkSize int
EnableLastMsgSeqNumProcessed bool
EnableNextExpectedMsgSeqNum bool
SkipCheckLatency bool
MaxLatency time.Duration
DisableMessagePersist bool
TimeZone *time.Location
ResetSeqTime time.Time
EnableResetSeqTime bool
InChanCapacity int
ValidateChecksum bool
// Required on logon for FIX.T.1 messages.
DefaultApplVerID string
// Specific to initiators.
ReconnectInterval time.Duration
LogoutTimeout time.Duration
LogonTimeout time.Duration
SocketConnectAddress []string
}