type google.golang.org/grpc.StreamServerInterceptor

8 uses

	google.golang.org/grpc (current package)
		interceptor.go#L77: type StreamServerInterceptor func(srv interface{}, ss ServerStream, info *StreamServerInfo, handler StreamHandler) error
		server.go#L129: 	streamInt             StreamServerInterceptor
		server.go#L131: 	chainStreamInts       []StreamServerInterceptor
		server.go#L348: func StreamInterceptor(i StreamServerInterceptor) ServerOption {
		server.go#L361: func ChainStreamInterceptor(interceptors ...StreamServerInterceptor) ServerOption {
		server.go#L1292: 		interceptors = append([]StreamServerInterceptor{s.opts.streamInt}, s.opts.chainStreamInts...)
		server.go#L1295: 	var chainedInt StreamServerInterceptor
		server.go#L1310: func getChainStreamHandler(interceptors []StreamServerInterceptor, curr int, info *StreamServerInfo, finalHandler StreamHandler) StreamHandler {