()
| 390 | } |
| 391 | |
| 392 | func (x *frontendProcessClient) Recv() (*FrontendToClient, error) { |
| 393 | m := new(FrontendToClient) |
| 394 | if err := x.ClientStream.RecvMsg(m); err != nil { |
| 395 | return nil, err |
| 396 | } |
| 397 | return m, nil |
| 398 | } |
| 399 | |
| 400 | func (c *frontendClient) NotifyClientShutdown(ctx context.Context, in *NotifyClientShutdownRequest, opts ...grpc.CallOption) (*NotifyClientShutdownResponse, error) { |
| 401 | out := new(NotifyClientShutdownResponse) |