diff options
author | hiddenpath <hiddenpath@yandex-team.com> | 2025-01-15 20:17:09 +0300 |
---|---|---|
committer | hiddenpath <hiddenpath@yandex-team.com> | 2025-01-15 21:21:14 +0300 |
commit | bb37d56338bace93813adc51a61936a19acc8edc (patch) | |
tree | 3d771660421001c994e2baf9a40b409d06c7a24b /yt/cpp/mapreduce/client/batch_request_impl.h | |
parent | 9a04c0af35c6a47061b3699089da07acfcf14587 (diff) | |
download | ydb-bb37d56338bace93813adc51a61936a19acc8edc.tar.gz |
YT-23616: Make THttpRawBatchRequest as an implementation of IRawBatchRequest interface
commit_hash:9e6c556686dda1562697762d38da532dc5c87b80
Diffstat (limited to 'yt/cpp/mapreduce/client/batch_request_impl.h')
-rw-r--r-- | yt/cpp/mapreduce/client/batch_request_impl.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/yt/cpp/mapreduce/client/batch_request_impl.h b/yt/cpp/mapreduce/client/batch_request_impl.h index d53eb196dd..bbd993a925 100644 --- a/yt/cpp/mapreduce/client/batch_request_impl.h +++ b/yt/cpp/mapreduce/client/batch_request_impl.h @@ -22,10 +22,6 @@ struct TResponseInfo; class TClient; using TClientPtr = ::TIntrusivePtr<TClient>; -namespace NRawClient { - class THttpRawBatchRequest; -} - //////////////////////////////////////////////////////////////////////////////// class TBatchRequest @@ -119,11 +115,11 @@ public: virtual void ExecuteBatch(const TExecuteBatchOptions& executeBatch) override; private: - TBatchRequest(NDetail::NRawClient::THttpRawBatchRequest* impl, ::TIntrusivePtr<TClient> client); + TBatchRequest(IRawBatchRequest* impl, ::TIntrusivePtr<TClient> client); private: TTransactionId DefaultTransaction_; - ::TIntrusivePtr<NDetail::NRawClient::THttpRawBatchRequest> Impl_; + IRawBatchRequestPtr Impl_; std::unique_ptr<TBatchRequest> TmpWithTransaction_; ::TIntrusivePtr<TClient> Client_; |