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#L96: type MethodHandler func(srv any, ctx context.Context, dec func(any) error, interceptor UnaryServerInterceptor) (any, error)
server.go#L158: unaryInt UnaryServerInterceptor
server.go#L160: chainUnaryInts []UnaryServerInterceptor
server.go#L467: func UnaryInterceptor(i UnaryServerInterceptor) ServerOption {
server.go#L480: func ChainUnaryInterceptor(interceptors ...UnaryServerInterceptor) ServerOption {
server.go#L1217: interceptors = append([]UnaryServerInterceptor{s.opts.unaryInt}, s.opts.chainUnaryInts...)
server.go#L1220: var chainedInt UnaryServerInterceptor
server.go#L1232: func chainUnaryInterceptors(interceptors []UnaryServerInterceptor) UnaryServerInterceptor {
server.go#L1238: 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) {