Skip to content

Commit

Permalink
grpc: export MethodHandler #7794 (#7796)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohdjishin authored Nov 11, 2024
1 parent a3a8657 commit 0d0e530
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,13 @@ func init() {
var statusOK = status.New(codes.OK, "")
var logger = grpclog.Component("core")

type methodHandler func(srv any, ctx context.Context, dec func(any) error, interceptor UnaryServerInterceptor) (any, error)
// MethodHandler is a function type that processes a unary RPC method call.
type MethodHandler func(srv any, ctx context.Context, dec func(any) error, interceptor UnaryServerInterceptor) (any, error)

// MethodDesc represents an RPC service's method specification.
type MethodDesc struct {
MethodName string
Handler methodHandler
Handler MethodHandler
}

// ServiceDesc represents an RPC service's specification.
Expand Down

0 comments on commit 0d0e530

Please sign in to comment.