- Notifications
You must be signed in to change notification settings - Fork60
A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.
License
NotificationsYou must be signed in to change notification settings
9b9387/zero
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.
Wiki Pagehttps://github.com/9b9387/zero/wiki
Go version: 1.9.x or later
go get -u github.com/9b9387/zero
import"github.com/9b9387/zero"funcmain() {host:="127.0.0.1:18787"ss,err:=zero.NewSocketService(host)iferr!=nil {return}// set Heartbeatss.SetHeartBeat(5*time.Second,30*time.Second)// net eventss.RegMessageHandler(HandleMessage)ss.RegConnectHandler(HandleConnect)ss.RegDisconnectHandler(HandleDisconnect)ss.Serv()}
Example Code:https://github.com/9b9387/zero/blob/master/service_test.go
Unity Client Repositoryhttps://github.com/9b9387/zero_unity_demo
About
A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published