| 31 | } |
| 32 | |
| 33 | bool ExecutorModule::Start() { |
| 34 | // Test simple execute |
| 35 | SimpleExecuteDemo(); |
| 36 | |
| 37 | // Test thread safe execute |
| 38 | ThreadSafeDemo(); |
| 39 | |
| 40 | // Test time schedule execute |
| 41 | TimeScheduleDemo(); |
| 42 | |
| 43 | AIMRT_INFO("Start succeeded."); |
| 44 | |
| 45 | return true; |
| 46 | } |
| 47 | |
| 48 | void ExecutorModule::Shutdown() { |
| 49 | run_flag_ = false; |
nothing calls this directly
no outgoing calls
no test coverage detected