2021-03-27 19:24:08 +08:00
|
|
|
// Package abstract...
|
|
|
|
//
|
|
|
|
// Description : 长连接命令的约束
|
|
|
|
//
|
2021-06-05 22:13:09 +08:00
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
2021-03-27 19:24:08 +08:00
|
|
|
//
|
|
|
|
// Date : 2021-03-27 6:34 下午
|
|
|
|
package abstract
|
|
|
|
|
2021-04-17 15:04:43 +08:00
|
|
|
import (
|
2021-11-17 18:30:49 +08:00
|
|
|
"git.zhangdeman.cn/zhangdeman/websocket/config"
|
|
|
|
"git.zhangdeman.cn/zhangdeman/websocket/context"
|
2021-04-17 15:04:43 +08:00
|
|
|
)
|
2021-03-27 19:24:08 +08:00
|
|
|
|
|
|
|
// ICommand 指令
|
|
|
|
//
|
2021-06-05 22:13:09 +08:00
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
2021-03-27 19:24:08 +08:00
|
|
|
//
|
|
|
|
// Date : 6:35 下午 2021/3/27
|
|
|
|
type ICommand interface {
|
|
|
|
// GetCommand 注册的客户端指令
|
|
|
|
//
|
2021-06-05 22:13:09 +08:00
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
2021-03-27 19:24:08 +08:00
|
|
|
//
|
|
|
|
// Date : 7:21 下午 2021/3/27
|
|
|
|
GetCommand() string
|
2021-04-17 15:04:43 +08:00
|
|
|
// GetConfigOption 获取指令的配置
|
|
|
|
//
|
2021-06-05 22:13:09 +08:00
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
2021-04-17 15:04:43 +08:00
|
|
|
//
|
|
|
|
// Date : 2:49 下午 2021/4/17
|
|
|
|
GetConfigOption() []config.SetCommandConfig
|
2021-03-27 19:24:08 +08:00
|
|
|
// Execute 执行指令的逻辑
|
|
|
|
//
|
2021-06-05 22:13:09 +08:00
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
2021-03-27 19:24:08 +08:00
|
|
|
//
|
|
|
|
// Date : 7:21 下午 2021/3/27
|
2021-04-18 21:55:41 +08:00
|
|
|
Execute(ctx *context.WSContext, data []byte) (interface{}, error)
|
2021-03-27 19:24:08 +08:00
|
|
|
}
|