| 23 | namespace ark { |
| 24 | |
| 25 | bool AFCScheduleModule::Init() |
| 26 | { |
| 27 | scheduler = std::make_shared<AFScheduler>(16); |
| 28 | return true; |
| 29 | } |
| 30 | |
| 31 | void AFCScheduleModule::AddCronSchedule(const std::string& cron_expression, SCHEDULER_FUNCTOR&& cb) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected