代码拉取完成,页面将自动刷新
package main
import (
"fmt"
"os"
"os/signal"
"time"
"gitee.com/wanjimao/dongli-zinx/examples/zinx_client/c_router"
"gitee.com/wanjimao/dongli-zinx/ziface"
"gitee.com/wanjimao/dongli-zinx/zlog"
"gitee.com/wanjimao/dongli-zinx/znet"
)
type PositionClientRouter struct {
znet.BaseRouter
}
func (this *PositionClientRouter) Handle(request ziface.IRequest) {
}
// 客户端自定义业务
func business(conn ziface.IConnection) {
for {
err := conn.SendMsg(1, []byte("ping ping ping ..."))
if err != nil {
fmt.Println(err)
}
time.Sleep(1 * time.Second)
}
}
// 创建连接的时候执行
func DoClientConnectedBegin(conn ziface.IConnection) {
//设置两个链接属性,在连接创建之后
conn.SetProperty("Name", "刘丹冰")
conn.SetProperty("Home", "https://yuque.com/aceld")
go business(conn)
}
func wait() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, os.Kill)
sig := <-c
fmt.Println("===exit===", sig)
}
func main() {
// Create a Client.
client := znet.NewWsClient("127.0.0.1", 9000)
// Add business logic for when the connection is first established.(添加首次建立链接时的业务)
client.SetOnConnStart(DoClientConnectedBegin)
// Register business routing for receiving messages from the server.(注册收到服务器消息业务路由)
client.AddRouter(2, &c_router.PingRouter{})
client.AddRouter(3, &c_router.HelloRouter{})
// Start the client.
client.Start()
select {
case err := <-client.GetErrChan():
// Handle the errors returned by the client.(处理客户端返回的错误)
zlog.Ins().ErrorF("client err:%v", err)
}
// close
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, os.Kill)
sig := <-c
fmt.Println("===exit===", sig)
// Clean up the client.(清理客户端)
client.Stop()
time.Sleep(time.Second * 2)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。