YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/master/xcluster_split_driver.h
Line
Count
Source
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_MASTER_XCLUSTER_SPLIT_DRIVER_H
14
#define YB_MASTER_XCLUSTER_SPLIT_DRIVER_H
15
16
#include "yb/common/entity_ids_types.h"
17
#include "yb/master/catalog_entity_info.h"
18
#include "yb/util/status.h"
19
20
namespace yb {
21
namespace master {
22
23
class XClusterSplitDriverIf {
24
 public:
25
91
  virtual ~XClusterSplitDriverIf() {}
26
  virtual CHECKED_STATUS UpdateXClusterConsumerOnTabletSplit(
27
      const TableId& consumer_table_id, const SplitTabletIds& split_tablet_ids) = 0;
28
29
  virtual CHECKED_STATUS UpdateXClusterProducerOnTabletSplit(
30
      const TableId& producer_table_id, const SplitTabletIds& split_tablet_ids) = 0;
31
};
32
33
} // namespace master
34
} // namespace yb
35
#endif // YB_MASTER_XCLUSTER_SPLIT_DRIVER_H