Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GRPCServer ¶
type GRPCServer struct {
// contains filtered or unexported fields
}
GRPCServer 代表一个 GRPC 服务器.
func NewGRPCServer ¶
func NewGRPCServer( grpcOptions *genericoptions.GRPCOptions, tlsOptions *genericoptions.TLSOptions, serverRegisterFunc func(grpc.ServiceRegistrar), serverOptions []grpc.ServerOption, ) (*GRPCServer, error)
NewGRPCServer 创建一个新的 GRPC 服务器实例.
func (*GRPCServer) GracefulStop ¶
func (s *GRPCServer) GracefulStop(ctx context.Context)
GracefulStop 优雅地关闭 GRPC 服务器.
type HTTPServer ¶
type HTTPServer struct {
// contains filtered or unexported fields
}
HTTPServer 代表一个 HTTP 服务器.
func NewHTTPServer ¶
func NewHTTPServer( httpOptions *genericoptions.HTTPOptions, grpcOptions *genericoptions.GRPCOptions, tlsOptions *genericoptions.TLSOptions, handlerRegisterFunc func(mux *runtime.ServeMux, conn *grpc.ClientConn) error, ) (*HTTPServer, error)
NewHTTPServer 创建一个新的 HTTP 服务器实例.
func (*HTTPServer) GracefulStop ¶
func (s *HTTPServer) GracefulStop(ctx context.Context)
GracefulStop 优雅地关闭 HTTP 服务器.
Click to show internal directories.
Click to hide internal directories.