blob: def521a9188a8e21956f9963ac65bc40245fe113 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#include <yt/cpp/mapreduce/http/context.h>
#include <yt/cpp/mapreduce/interface/client_method_options.h>
#include <yt/cpp/mapreduce/interface/raw_client.h>
namespace NYT::NDetail {
////////////////////////////////////////////////////////////////////////////////
class THttpRawClient
: public IRawClient
{
public:
THttpRawClient(const TClientContext& context);
// Cypress
void Set(
TMutationId& mutationId,
const TTransactionId& transactionId,
const TYPath& path,
const TNode& value,
const TSetOptions& options = {}) override;
private:
const TClientContext Context_;
};
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NDetail
|