type google.golang.org/grpc.UnaryServerInterceptor
13 uses
google.golang.org/grpc (current package)
interceptor.go#L87: type UnaryServerInterceptor func(ctx context.Context, req any, info *UnaryServerInfo, handler UnaryHandler) (resp any, err error)
server.go#L98: type MethodHandler func(srv any, ctx context.Context, dec func(any) error, interceptor UnaryServerInterceptor) (any, error)
server.go#L161: unaryInt UnaryServerInterceptor
server.go#L163: chainUnaryInts []UnaryServerInterceptor
server.go#L485: func UnaryInterceptor(i UnaryServerInterceptor) ServerOption {
server.go#L498: func ChainUnaryInterceptor(interceptors ...UnaryServerInterceptor) ServerOption {
server.go#L1230: interceptors = append([]UnaryServerInterceptor{s.opts.unaryInt}, s.opts.chainUnaryInts...)
server.go#L1233: var chainedInt UnaryServerInterceptor
server.go#L1245: func chainUnaryInterceptors(interceptors []UnaryServerInterceptor) UnaryServerInterceptor {
server.go#L1251: func getChainUnaryHandler(interceptors []UnaryServerInterceptor, curr int, info *UnaryServerInfo, finalHandler UnaryHandler) UnaryHandler {
google.golang.org/grpc/health/grpc_health_v1
health_grpc.pb.go#L219: func _Health_Check_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
health_grpc.pb.go#L237: func _Health_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {