type google.golang.org/grpc.GenericClientStream
8 uses
google.golang.org/grpc (current package)
stream_interfaces.go#L165: type GenericClientStream[Req any, Res any] struct {
stream_interfaces.go#L169: var _ ServerStreamingClient[string] = (*GenericClientStream[int, string])(nil)
stream_interfaces.go#L170: var _ ClientStreamingClient[int, string] = (*GenericClientStream[int, string])(nil)
stream_interfaces.go#L171: var _ BidiStreamingClient[int, string] = (*GenericClientStream[int, string])(nil)
stream_interfaces.go#L176: func (x *GenericClientStream[Req, Res]) Send(m *Req) error {
stream_interfaces.go#L183: func (x *GenericClientStream[Req, Res]) Recv() (*Res, error) {
stream_interfaces.go#L194: func (x *GenericClientStream[Req, Res]) CloseAndRecv() (*Res, error) {
google.golang.org/grpc/health/grpc_health_v1
health_grpc.pb.go#L124: x := &grpc.GenericClientStream[HealthCheckRequest, HealthCheckResponse]{ClientStream: stream}