YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/master/tablet_split_complete_handler.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
14
#ifndef YB_MASTER_TABLET_SPLIT_COMPLETE_HANDLER_H
15
#define YB_MASTER_TABLET_SPLIT_COMPLETE_HANDLER_H
16
17
#include <set>
18
#include <utility>
19
20
#include "yb/common/entity_ids.h"
21
22
#include "yb/master/catalog_entity_info.h"
23
24
namespace yb {
25
namespace master {
26
27
class TabletSplitCompleteHandlerIf {
28
 public:
29
92
  virtual ~TabletSplitCompleteHandlerIf() {}
30
  virtual void ProcessSplitTabletResult(const Status& status,
31
                                        const TableId& consumer_table_id,
32
                                        const SplitTabletIds& split_tablet_ids) = 0;
33
};
34
35
}  // namespace master
36
}  // namespace yb
37
#endif // YB_MASTER_TABLET_SPLIT_COMPLETE_HANDLER_H