| 70 | } |
| 71 | |
| 72 | ::grpc::Status GRPCService::ExecuteGraphParallel( |
| 73 | ::grpc::ServerContext* /*context*/, const ExecuteGraphParallelRequest* arg, |
| 74 | ExecuteParallelResponse* result) { |
| 75 | return DelegateRPC([this, arg, result]() { |
| 76 | return service_->ExecuteGraphParallel(arg, result); |
| 77 | }); |
| 78 | } |
| 79 | |
| 80 | ::grpc::Status GRPCService::WaitForExecution(::grpc::ServerContext* context, |
| 81 | const WaitForExecutionRequest* arg, |
nothing calls this directly
no test coverage detected