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

Method BatchMutateCallBackWrapper

src/sdk/table_impl.cc:791–801  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

789}
790
791void TableImpl::BatchMutateCallBackWrapper(std::weak_ptr<TableImpl> weak_ptr_table,
792 std::vector<int64_t>* mu_id_list,
793 WriteTabletRequest* request,
794 WriteTabletResponse* response, bool failed,
795 int error_code) {
796 auto table = weak_ptr_table.lock();
797 if (!table) {
798 return;
799 }
800 table->BatchMutateCallBack(mu_id_list, request, response, failed, error_code);
801}
802
803void TableImpl::BatchMutateCallBack(std::vector<int64_t>* mu_id_list, WriteTabletRequest* request,
804 WriteTabletResponse* response, bool failed, int error_code) {

Callers

nothing calls this directly

Calls 1

BatchMutateCallBackMethod · 0.80

Tested by

no test coverage detected