Skip to content
forked from 9b9387/zero

A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.

License

Notifications You must be signed in to change notification settings

windslinux/zero

Repository files navigation

zero

A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.

Build StatusGo Report CardGoDoc

Wiki Page https://github.com/9b9387/zero/wiki

Requirements

Go version: 1.9.x or later

Usage

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

About

A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go100.0%