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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#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
TNode Get(
TMutationId& mutationId,
const TTransactionId& transactionId,
const TYPath& path,
const TGetOptions& options = {}) override;
TNode TryGet(
TMutationId& mutationId,
const TTransactionId& transactionId,
const TYPath& path,
const TGetOptions& options) override;
void Set(
TMutationId& mutationId,
const TTransactionId& transactionId,
const TYPath& path,
const TNode& value,
const TSetOptions& options = {}) override;
bool Exists(
TMutationId& mutataionId,
const TTransactionId& transactionId,
const TYPath& path,
const TExistsOptions& options = {}) override;
void MultisetAttributes(
TMutationId& mutationId,
const TTransactionId& transactionId,
const TYPath& path,
const TNode::TMapType& value,
const TMultisetAttributesOptions& options = {}) override;
private:
const TClientContext Context_;
};
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NDetail
|