You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/aceld/zinx/ziface"
|
|
"github.com/aceld/zinx/znet"
|
|
)
|
|
|
|
//ping test 自定义路由
|
|
type PingRouter struct {
|
|
znet.BaseRouter
|
|
}
|
|
|
|
//Test PreHandle
|
|
func (this *PingRouter) PreHandle(request ziface.IRequest) {
|
|
fmt.Println("Call Router PreHandle")
|
|
_, err := request.GetConnection().GetTCPConnection().Write([]byte("before ping ....\n"))
|
|
if err != nil {
|
|
fmt.Println("call back ping ping ping error")
|
|
}
|
|
}
|
|
|
|
//Test Handle
|
|
func (this *PingRouter) Handle(request ziface.IRequest) {
|
|
fmt.Println("Call PingRouter Handle")
|
|
_, err := request.GetConnection().GetTCPConnection().Write([]byte("ping...ping...ping\n"))
|
|
if err != nil {
|
|
fmt.Println("call back ping ping ping error")
|
|
}
|
|
}
|
|
|
|
//Test PostHandle
|
|
func (this *PingRouter) PostHandle(request ziface.IRequest) {
|
|
fmt.Println("Call Router PostHandle")
|
|
_, err := request.GetConnection().GetTCPConnection().Write([]byte("After ping .....\n"))
|
|
if err != nil {
|
|
fmt.Println("call back ping ping ping error")
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
//创建一个server句柄
|
|
// s := znet.NewServer("[zinx V0.3]")
|
|
s := znet.NewServer()
|
|
|
|
// s.AddRouter(&PingRouter{})
|
|
s.AddRouter(3, &PingRouter{})
|
|
//2 开启服务
|
|
s.Serve()
|
|
}
|