micro-server-tcp/handler.go
Vasiliy Tolstov 30bb235276 update import paths
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-10-27 01:04:58 +03:00

36 lines
549 B
Go

package tcp
import (
"net"
"go.unistack.org/micro/v3/register"
"go.unistack.org/micro/v3/server"
)
type Handler interface {
Serve(net.Conn)
}
type tcpHandler struct {
opts server.HandlerOptions
hd interface{}
eps []*register.Endpoint
maxMsgSize int
}
func (h *tcpHandler) Name() string {
return "handler"
}
func (h *tcpHandler) Handler() interface{} {
return h.hd
}
func (h *tcpHandler) Endpoints() []*register.Endpoint {
return h.eps
}
func (h *tcpHandler) Options() server.HandlerOptions {
return h.opts
}