1 Star 0 Fork 0

Coder/gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
channel_cmd_maker.go 972 Bytes
一键复制 编辑 原始数据 按行查看 历史
Coder 提交于 2024-11-27 16:35 . init
package schedule
import "gitee.com/andyxt/gox/service"
// IChannelInboundCommandMaker 创建的所有Commands全部都在Tcp读协程中执行
// IChannelOutboundCommandMaker 创建的所有Commands全部都在Tcp写协程中执行
type ICommand interface {
Exec()
}
type IChannelInboundCommandMaker interface {
//触发异常
MakeExceptionCommand(ctx service.IChannelContext, err error) ICommand
//新连接
MakeActiveCommand(Ctx service.IChannelContext) ICommand
//连接中断
MakeInActiveCommand(Ctx service.IChannelContext) ICommand
//收到消息包
MakeMessageReceivedCommand(Ctx service.IChannelContext, Data interface{}) ICommand
}
type IChannelOutboundCommandMaker interface {
// 触发异常
MakeExceptionCommand(ctx service.IChannelContext, err error) ICommand
// 请求关闭连接
MakeCloseCommand(Ctx service.IChannelContext) ICommand
// 下发消息包
MakeMessageSendCommand(Ctx service.IChannelContext, Data interface{}) ICommand
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/andyxt/gox.git
git@gitee.com:andyxt/gox.git
andyxt
gox
gox
v1.0.18

搜索帮助