Documentation ¶
Index ¶
- Constants
- type Option
- func Log(opts ...log.ServerOption) Option
- func WithAddr(addr string) Option
- func WithConfig(config config.Config) Option
- func WithDecodeRequestFunc(decReq engine.DecodeRequestFunc) Option
- func WithEncodeErrorFunc(encErr engine.EncodeErrorFunc) Option
- func WithEncodeResponseFunc(encResp engine.EncodeResponseFunc) Option
- func WithEndHook(f engine.Hook) Option
- func WithEngine(engine string) Option
- func WithServiceName(serviceName string) Option
- func WithStartedHook(f engine.Hook) Option
- type Server
- func (e *Server) Attempt() bool
- func (e *Server) Config(cfg config.Config)
- func (e *Server) Endpoint() *url.URL
- func (e *Server) Group(group string, middlewares ...middleware.Middleware) *engine.RouterGroup
- func (e *Server) Handle(path string, obj interface{}, opts ...engine.RouterOption)
- func (e *Server) Name() string
- func (e *Server) Options(opts ...Option)
- func (s *Server) RouterPathList() transport.RouterList
- func (s *Server) ServiceName() string
- func (e *Server) Start(ctx context.Context) (err error)
- func (e *Server) Stop(ctx context.Context) error
- func (e *Server) Type() string
- func (e *Server) Use(middlewares ...middleware.Middleware)
Constants ¶
View Source
const Type string = "rpc"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Option ¶
type Option func(*options)
Option 参数设置类型
func WithDecodeRequestFunc ¶ added in v0.5.1
func WithDecodeRequestFunc(decReq engine.DecodeRequestFunc) Option
WithDecodeRequestFunc 解析入参
func WithEncodeErrorFunc ¶ added in v0.5.1
func WithEncodeErrorFunc(encErr engine.EncodeErrorFunc) Option
WithEncodeErrorFunc 编码错误
func WithEncodeResponseFunc ¶ added in v0.5.1
func WithEncodeResponseFunc(encResp engine.EncodeResponseFunc) Option
WithEncodeResponseFunc 编码响应
func WithEndHook ¶ added in v0.1.1
func WithServiceName ¶ added in v0.1.1
WithServiceName 设置服务名称
func WithStartedHook ¶ added in v0.1.1
WithStartedHook 设置启动回调函数
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
func (*Server) Group ¶
func (e *Server) Group(group string, middlewares ...middleware.Middleware) *engine.RouterGroup
func (*Server) Handle ¶
func (e *Server) Handle(path string, obj interface{}, opts ...engine.RouterOption)
func (*Server) RouterPathList ¶ added in v0.5.11
func (s *Server) RouterPathList() transport.RouterList
获取树形的路径列表
func (*Server) Use ¶
func (e *Server) Use(middlewares ...middleware.Middleware)
Click to show internal directories.
Click to hide internal directories.