rpc/server_handler.go

23 lines
469 B
Go
Raw Normal View History

2017-11-08 06:35:27 +00:00
package rpc
2017-11-01 07:25:29 +00:00
import (
"io"
"git.loafle.net/commons_go/rpc/protocol"
)
2017-11-08 06:35:27 +00:00
type ServerHandler interface {
2017-11-01 07:25:29 +00:00
RegisterCodec(codec protocol.ServerCodec, contentType string)
OnPreRead(r io.Reader)
OnPostRead(r io.Reader)
OnPreWriteResult(w io.Writer, result interface{})
OnPostWriteResult(w io.Writer, result interface{})
OnPreWriteError(w io.Writer, err error)
OnPostWriteError(w io.Writer, err error)
2017-11-02 06:39:30 +00:00
GetCodec(contentType string) (protocol.ServerCodec, error)
2017-11-01 07:25:29 +00:00
}