| 789 | } |
| 790 | |
| 791 | void 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 | |
| 803 | void TableImpl::BatchMutateCallBack(std::vector<int64_t>* mu_id_list, WriteTabletRequest* request, |
| 804 | WriteTabletResponse* response, bool failed, int error_code) { |
nothing calls this directly
no test coverage detected