MCPcopy Create free account
hub / github.com/baidu/tera / ScanMetaTableCallBackWrapper

Method ScanMetaTableCallBackWrapper

src/sdk/table_impl.cc:1625–1637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1623}
1624
1625void TableImpl::ScanMetaTableCallBackWrapper(std::weak_ptr<TableImpl> weak_ptr_table,
1626 std::string key_start, std::string key_end,
1627 std::string expand_key_end, int64_t start_time,
1628 ScanTabletRequest* request,
1629 ScanTabletResponse* response, bool failed,
1630 int error_code) {
1631 auto table = weak_ptr_table.lock();
1632 if (!table) {
1633 return;
1634 }
1635 table->ScanMetaTableCallBack(key_start, key_end, expand_key_end, start_time, request, response,
1636 failed, error_code);
1637}
1638
1639void TableImpl::ScanMetaTableCallBack(std::string key_start, std::string key_end,
1640 std::string expand_key_end, int64_t start_time,

Callers

nothing calls this directly

Calls 1

ScanMetaTableCallBackMethod · 0.80

Tested by

no test coverage detected