/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 | 92 | 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 |