Client sends a stream of ClientMsg, server responds with a stream of ServerMsg
(ctx context.Context, opts ...grpc.CallOption)
| 24 | type NodeClient interface { |
| 25 | // Client sends a stream of ClientMsg, server responds with a stream of ServerMsg |
| 26 | MessageLoop(ctx context.Context, opts ...grpc.CallOption) (Node_MessageLoopClient, error) |
| 27 | // Large file upload: a request with a stream of chunks. |
| 28 | LargeFileReceive(ctx context.Context, opts ...grpc.CallOption) (Node_LargeFileReceiveClient, error) |
| 29 | // Large file file download: a response with a stream of chunks. |
no outgoing calls
no test coverage detected