batch_request.cpp 389 B

123456789101112131415
  1. #include "batch_request.h"
  2. #include "client.h"
  3. namespace NYT {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. IBatchRequestBase& IBatchRequest::WithTransaction(const ITransactionPtr& transaction)
  6. {
  7. return WithTransaction(transaction->GetId());
  8. }
  9. ////////////////////////////////////////////////////////////////////////////////
  10. } // namespace NYT