| 900 | return wr->GetResponse(); |
| 901 | } |
| 902 | TIntrusivePtr<TWaitResponse> WaitableRequest(const TUdpAddress& addr, const TString& url, TVector<char>* data) override { |
| 903 | TIntrusivePtr<TWaitResponse> wr = new TWaitResponse; |
| 904 | TGUID reqId; |
| 905 | CreateGuid(&reqId); |
| 906 | SendRequestImpl(addr, url, data, reqId, wr.Get(), nullptr); |
| 907 | return wr; |
| 908 | } |
| 909 | TMuxEvent& GetAsyncEvent() override { |
| 910 | return UserQueues->GetAsyncEvent(); |
| 911 | } |
no test coverage detected