Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.09 KB

readme.md

File metadata and controls

30 lines (23 loc) · 1.09 KB

bon GoDoc Go Report Card Build Status

Bon provides routing capability for your net.Conn's like you do with for your http handlers. It can both accept and open connections like described in Transporter. Thus, you can both Connect to a route and invoke a handler of one when requested by others.

See Transporter to implement your own net.Conn provider.

go get gopkg.in/ilgooz/bon.v1

Usage

const (
  // Define your routes.
  GRPCConn bon.Route = 1 << iota
)

remoteService := bon.New(remoteServiceTransporter)
remoteService.Handle(GRPCConn, func(conn net.Conn){
  // do domething with your conn...
})
go remoteService.Run()


service := bon.New(serviceTransporter)
conn, err := service.Connect(GRPCConn)
// do domething with your conn...