1 Star 0 Fork 0

muicx / quickfix

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pending_timeout.go 337 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chris Busbey 提交于 2016-08-09 10:42 . state machine knows session time
package quickfix
import "github.com/quickfixgo/quickfix/internal"
type pendingTimeout struct {
sessionState
}
func (s pendingTimeout) Timeout(session *session, event internal.Event) (nextState sessionState) {
switch event {
case internal.PeerTimeout:
session.log.OnEvent("Session Timeout")
return latentState{}
}
return s
}
Go
1
https://gitee.com/bradhuang/quickfixgo.git
git@gitee.com:bradhuang/quickfixgo.git
bradhuang
quickfixgo
quickfix
dependabot/go_modules/github.com/mattn/go-sqlite3-1.14.9

搜索帮助