Versions in this module Expand all Collapse all v1 v1.0.0 Sep 12, 2024 Changes in this version + type Server struct + func DefaultServer(opts ...ServerOption) *Server + func NewServer(opts ...ServerOption) *Server + func (s *Server) GetListener() net.Listener + func (s *Server) RegisterService(desc *grpc.ServiceDesc, impl interface{}) + func (s *Server) Start(ctx context.Context) error + func (s *Server) Stop() error + type ServerOption func(server *Server) + func GrpcAddress(address string) ServerOption + func GrpcListener(lis net.Listener) ServerOption + func GrpcOptions(opts ...grpc.ServerOption) ServerOption + func StreamInterceptor(in ...grpc.StreamServerInterceptor) ServerOption + func UnaryInterceptor(in ...grpc.UnaryServerInterceptor) ServerOption