| 997 | return wr->GetResponse(); |
| 998 | } |
| 999 | TIntrusivePtr<TWaitResponse> WaitableRequest(const TConnectionAddress& addr, const TString& url, TVector<char>* data) override { |
| 1000 | TIntrusivePtr<TWaitResponse> wr = new TWaitResponse; |
| 1001 | TGUID reqId; |
| 1002 | CreateGuid(&reqId); |
| 1003 | SendRequestImpl(addr, url, data, reqId, wr.Get(), nullptr); |
| 1004 | return wr; |
| 1005 | } |
| 1006 | TMuxEvent& GetAsyncEvent() override { |
| 1007 | return UserQueues->GetAsyncEvent(); |
| 1008 | } |
no test coverage detected