YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/cdc/cdc_output_client_interface.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
13
#ifndef YB_CDC_CDC_OUTPUT_CLIENT_INTERFACE_H
14
#define YB_CDC_CDC_OUTPUT_CLIENT_INTERFACE_H
15
16
#include "yb/consensus/opid_util.h"
17
18
#include "yb/cdc/cdc_service.pb.h"
19
20
#include "yb/util/status.h"
21
#include "yb/util/status_callback.h"
22
23
namespace yb {
24
25
namespace client {
26
27
class YBTableName;
28
29
} // namespace client
30
31
namespace cdc {
32
33
struct OutputClientResponse {
34
  Status status;
35
  OpIdPB last_applied_op_id;
36
  uint32_t processed_record_count;
37
};
38
39
class CDCOutputClient {
40
 public:
41
0
  virtual ~CDCOutputClient() {}
42
0
  virtual void Shutdown() {}
43
  // Async call for applying changes.
44
  virtual CHECKED_STATUS ApplyChanges(const cdc::GetChangesResponsePB* resp) = 0;
45
};
46
47
} // namespace cdc
48
} // namespace yb
49
50
#endif // YB_CDC_CDC_OUTPUT_CLIENT_INTERFACE_H