MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / OnTableRowUpdate

Method OnTableRowUpdate

src/plugin/kernel/src/AFClassCallBackManager.cpp:484–497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482}
483
484void AFClassCallBackManager::OnTableRowUpdate(AFDelaySyncTable& table, const int row, AFINode* pNode)
485{
486 auto iter = table.row_list_.find(row);
487 if (iter == table.row_list_.end())
488 {
489 AFDelaySyncRow row_data(row);
490 row_data.node_list_.insert(pNode);
491 table.row_list_.insert(std::make_pair(row, row_data));
492 }
493 else
494 {
495 iter->second.node_list_.insert(pNode);
496 }
497}
498
499void AFClassCallBackManager::OnTableClear(AFDelaySyncTable& table)
500{

Callers

nothing calls this directly

Calls 3

findMethod · 0.45
endMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected