| 93 | } |
| 94 | |
| 95 | void StarWorkerService::GetStatusHandler(StarServerTag* tag) { |
| 96 | Schedule([this, tag]() { |
| 97 | StarCall<GetStatusRequest, GetStatusResponse> |
| 98 | *call = new StarCall<GetStatusRequest, GetStatusResponse>(); |
| 99 | InitStarServerTag(&call->req_, &call->resp_, tag); |
| 100 | |
| 101 | Status s = worker_->GetStatus(&call->req_, &call->resp_); |
| 102 | |
| 103 | tag->ProcessDone(s); |
| 104 | delete call; |
| 105 | }); |
| 106 | } |
| 107 | |
| 108 | void StarWorkerService::CreateWorkerSessionHandler(StarServerTag* tag) { |
| 109 | Schedule([this, tag]() { |
nothing calls this directly
no test coverage detected