| 483 | } |
| 484 | |
| 485 | int Sample3Module::OnClassCallBackEvent( |
| 486 | const AFGUID& self, const std::string& strClassName, const ArkEntityEvent event, const AFIDataList& arg) |
| 487 | { |
| 488 | std::cout << "---------- OnClassCallBackEvent start----------" << std::endl; |
| 489 | |
| 490 | std::cout << "ClassName: " << strClassName << " ID: " << self << " Event: " << (int)event << std::endl; |
| 491 | |
| 492 | if (event == ArkEntityEvent::ENTITY_EVT_DATA_FINISHED) |
| 493 | { |
| 494 | // |
| 495 | } |
| 496 | |
| 497 | std::cout << "---------- OnClassCallBackEvent end----------" << std::endl; |
| 498 | |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | int Sample3Module::OnDataCallBackEvent(const AFGUID& self, const std::string& data_name, const uint32_t index, |
| 503 | const AFIData& old_value, const AFIData& new_value) |
nothing calls this directly
no outgoing calls
no test coverage detected