rust_macios/background_tasks.rs
1//! Request the system to launch your app in the background to run tasks.
2
3/* Essentials
4*/
5
6mod bg_app_refresh_task;
7mod bg_app_refresh_task_request;
8mod bg_processing_task;
9mod bg_processing_task_request;
10mod bg_task;
11mod bg_task_request;
12mod bg_task_scheduler;
13
14pub use bg_app_refresh_task::*;
15pub use bg_app_refresh_task_request::*;
16pub use bg_processing_task::*;
17pub use bg_processing_task_request::*;
18pub use bg_task::*;
19pub use bg_task_request::*;
20pub use bg_task_scheduler::*;