40 lines
891 B
Go
40 lines
891 B
Go
// Package abstract...
|
|
//
|
|
// Description : 长连接命令的约束
|
|
//
|
|
// Author : go_developer@163.com<张德满>
|
|
//
|
|
// Date : 2021-03-27 6:34 下午
|
|
package abstract
|
|
|
|
import (
|
|
"github.com/go-developer/websocket/config"
|
|
"github.com/go-developer/websocket/context"
|
|
)
|
|
|
|
// ICommand 指令
|
|
//
|
|
// Author : go_developer@163.com<张德满>
|
|
//
|
|
// Date : 6:35 下午 2021/3/27
|
|
type ICommand interface {
|
|
// GetCommand 注册的客户端指令
|
|
//
|
|
// Author : go_developer@163.com<张德满>
|
|
//
|
|
// Date : 7:21 下午 2021/3/27
|
|
GetCommand() string
|
|
// GetConfigOption 获取指令的配置
|
|
//
|
|
// Author : go_developer@163.com<张德满>
|
|
//
|
|
// Date : 2:49 下午 2021/4/17
|
|
GetConfigOption() []config.SetCommandConfig
|
|
// Execute 执行指令的逻辑
|
|
//
|
|
// Author : go_developer@163.com<张德满>
|
|
//
|
|
// Date : 7:21 下午 2021/3/27
|
|
Execute(ctx *context.WSContext, data []byte) error
|
|
}
|