(ctx context.Context, opts ...grpc.CallOption)
| 88 | type WorkerService_RunServerClient = grpc.BidiStreamingClient[ServerArgs, ServerStatus] |
| 89 | |
| 90 | func (c *workerServiceClient) RunClient(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[ClientArgs, ClientStatus], error) { |
| 91 | cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) |
| 92 | stream, err := c.cc.NewStream(ctx, &WorkerService_ServiceDesc.Streams[1], WorkerService_RunClient_FullMethodName, cOpts...) |
| 93 | if err != nil { |
| 94 | return nil, err |
| 95 | } |
| 96 | x := &grpc.GenericClientStream[ClientArgs, ClientStatus]{ClientStream: stream} |
| 97 | return x, nil |
| 98 | } |
| 99 | |
| 100 | // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. |
| 101 | type WorkerService_RunClientClient = grpc.BidiStreamingClient[ClientArgs, ClientStatus] |
nothing calls this directly
no test coverage detected