blob: fefdacb61a05b8836bcd130aa5f14702e596e948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "batch_request.h"
#include "client.h"
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
IBatchRequestBase& IBatchRequest::WithTransaction(const ITransactionPtr& transaction)
{
return WithTransaction(transaction->GetId());
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|