type google.golang.org/grpc.GenericClientStream
7 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) {