(srv interface{}, stream grpc.ServerStream)
| 227 | } |
| 228 | |
| 229 | func _Node_LargeFileServe_Handler(srv interface{}, stream grpc.ServerStream) error { |
| 230 | m := new(FileDownReq) |
| 231 | if err := stream.RecvMsg(m); err != nil { |
| 232 | return err |
| 233 | } |
| 234 | return srv.(NodeServer).LargeFileServe(m, &nodeLargeFileServeServer{stream}) |
| 235 | } |
| 236 | |
| 237 | type Node_LargeFileServeServer interface { |
| 238 | Send(*FileDownResp) error |
nothing calls this directly
no test coverage detected