| 91 | } |
| 92 | |
| 93 | XResult Client::SetPolicy(XPolicyType policy) |
| 94 | { |
| 95 | Json::Value response; |
| 96 | std::string url = "/policy?policy=" + std::to_string((int)policy); |
| 97 | return GetResponse(http_client_->Post(url), response); |
| 98 | } |
| 99 | |
| 100 | XResult Client::SetPriority(XQueueHandle handle, Priority prio) |
| 101 | { |
nothing calls this directly
no outgoing calls
no test coverage detected