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

Method ScanCallBackWrapper

src/sdk/table_impl.cc:492–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

490}
491
492void TableImpl::ScanCallBackWrapper(std::weak_ptr<TableImpl> weak_ptr_table, ScanTask* scan_task,
493 ScanTabletRequest* request, ScanTabletResponse* response,
494 bool failed, int error_code) {
495 auto table = weak_ptr_table.lock();
496 if (!table) {
497 return;
498 }
499 table->ScanCallBack(scan_task, request, response, failed, error_code);
500}
501
502void TableImpl::ScanCallBack(ScanTask* scan_task, ScanTabletRequest* request,
503 ScanTabletResponse* response, bool failed, int error_code) {

Callers

nothing calls this directly

Calls 1

ScanCallBackMethod · 0.80

Tested by

no test coverage detected