Documentation ¶
Index ¶
- func CreateCtxWithClientInfo(ctx context.Context, info *lavapbv1.ServiceInfo) context.Context
- func CreateCtxWithReqID(ctx context.Context, reqId string) context.Context
- func CreateCtxWithServerInfo(ctx context.Context, info *lavapbv1.ServiceInfo) context.Context
- func GetClientInfo(ctx context.Context) *lavapbv1.ServiceInfo
- func GetReqID(ctx context.Context) string
- func GetServerInfo(ctx context.Context) *lavapbv1.ServiceInfo
- func WrapHandler[Req any, Rsp any](handle func(ctx context.Context, req *Req) (rsp *Rsp, err error)) func(ctx *fiber.Ctx) error
- type Close
- type GrpcGatewayRouter
- type GrpcRouter
- type HandlerFunc
- type HttpRouter
- type Init
- type Initializer
- type Middleware
- type MiddlewareWrap
- type Middlewares
- type Request
- type RequestHeader
- type Response
- type ResponseHeader
- type Server
- type Service
- type Validator
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateCtxWithClientInfo ¶
func CreateCtxWithReqID ¶
func CreateCtxWithServerInfo ¶
func GetClientInfo ¶
func GetClientInfo(ctx context.Context) *lavapbv1.ServiceInfo
func GetServerInfo ¶
func GetServerInfo(ctx context.Context) *lavapbv1.ServiceInfo
Types ¶
type GrpcGatewayRouter ¶
type GrpcGatewayRouter interface { GrpcRouter RegisterGateway(ctx context.Context, mux *runtime.ServeMux, conn grpc.ClientConnInterface) error }
type GrpcRouter ¶
type GrpcRouter interface { Middlewares() []Middleware ServiceDesc() *grpc.ServiceDesc }
type HttpRouter ¶
type HttpRouter interface { Middlewares() []Middleware Router(router fiber.Router) Openapi(doc *opendoc.Swagger) }
type Middleware ¶
type Middleware interface { Middleware(next HandlerFunc) HandlerFunc String() string }
func Chain ¶
func Chain(m ...Middleware) Middleware
type MiddlewareWrap ¶
type MiddlewareWrap struct { Next func(next HandlerFunc) HandlerFunc Name string }
func (MiddlewareWrap) Middleware ¶
func (m MiddlewareWrap) Middleware(next HandlerFunc) HandlerFunc
func (MiddlewareWrap) String ¶
func (m MiddlewareWrap) String() string
type Middlewares ¶
type Middlewares []Middleware
type Request ¶
type Request interface { // Client server or client Client() bool // Kind [http|grpc...] Kind() string // Stream Indicates whether it's a stream Stream() bool // Service name requested Service() string // Operation requested Operation() string // Endpoint requested Endpoint() string // ContentType Content type provided ContentType() string // Header of the request Header() *RequestHeader // Payload is the decoded value Payload() interface{} }
Request is a synchronous request interface
type RequestHeader ¶
type RequestHeader = fasthttp.RequestHeader
type Response ¶
type Response interface { Header() *ResponseHeader Payload() interface{} Stream() bool }
Response is the response writer for un encoded messages
type ResponseHeader ¶
type ResponseHeader = fasthttp.ResponseHeader
Click to show internal directories.
Click to hide internal directories.