本文整理汇总了Golang中github.com/quickfixgo/quickfix.SessionID.String方法的典型用法代码示例。如果您正苦于以下问题:Golang SessionID.String方法的具体用法?Golang SessionID.String怎么用?Golang SessionID.String使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/quickfixgo/quickfix.SessionID
的用法示例。
在下文中一共展示了SessionID.String方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: processMsg
func (e *EchoApplication) processMsg(msg *quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
var possResend field.PossResendField
msg.Header.Get(&possResend)
if msg.Body.Has(tag.ClOrdID) {
var orderID field.ClOrdIDField
if err := msg.Body.Get(&orderID); err != nil {
return err
}
sessionOrderID := sessionID.String() + orderID.String()
if possResend.FIXBoolean {
if e.OrderIds[sessionOrderID] {
return nil
}
}
e.OrderIds[sessionOrderID] = true
}
reply := copyMessage(msg)
if possResend.FIXBoolean {
reply.Header.Set(possResend)
}
quickfix.SendToTarget(reply, sessionID)
return nil
}
示例2: OnLogout
func (e *EchoApplication) OnLogout(sessionID quickfix.SessionID) {
e.log.Printf("OnLogout %v\n", sessionID.String())
}
示例3: OnLogon
func (e *EchoApplication) OnLogon(sessionID quickfix.SessionID) {
e.log.Printf("OnLogon %v\n", sessionID.String())
e.OrderIds = make(map[string]bool)
}
示例4: OnCreate
func (e EchoApplication) OnCreate(sessionID quickfix.SessionID) {
e.log.Printf("OnCreate %v\n", sessionID.String())
}
示例5: OnLogout
func (e *FixAcceptor) OnLogout(sessionID quickfix.SessionID) {
e.log.Printf("OnLogout %v\n", sessionID.String())
}
示例6: OnLogon
func (e *FixAcceptor) OnLogon(sessionID quickfix.SessionID) {
e.log.Printf("OnLogon %v\n", sessionID.String())
fmt.Println("logged on!")
e.OrderIds = make(map[string]bool)
}
示例7: OnCreate
func (e FixAcceptor) OnCreate(sessionID quickfix.SessionID) {
e.log.Printf("OnCreate %v\n", sessionID.String())
}