| 81 | } |
| 82 | |
| 83 | void StarWorkerService::StarRunGraphHandler(StarServerTag* tag) { |
| 84 | Schedule([this, tag]() { |
| 85 | worker_->StarRunGraphAsync(&(tag->star_graph_request_), |
| 86 | &(tag->star_graph_response_), |
| 87 | [this, tag](const Status& s) { |
| 88 | auto step_id = tag->star_graph_request_.step_id_; |
| 89 | tag->ProcessDone(s); |
| 90 | worker_->Cleanup(step_id); |
| 91 | }); |
| 92 | }); |
| 93 | } |
| 94 | |
| 95 | void StarWorkerService::GetStatusHandler(StarServerTag* tag) { |
| 96 | Schedule([this, tag]() { |
nothing calls this directly
no test coverage detected