-
Notifications
You must be signed in to change notification settings - Fork 2
Workmanager
Devrath edited this page Jun 5, 2021
·
15 revisions
-
Work-Manageris a new library fromandroid architecture components - It simplifies the work of getting the background tasks done, even if the application gets killed. This is very hard to achieve in the latest android versions using the old android
API's.
-
Work-Manageris a clever mobile assistant that helps to perform heavy tasks in the background thread. - It is in such a way that, we have certain tasks to complete, we hand over the tasks to the assistant stating the conditions in with the task has to be done. And finally, the assistant takes care of the task getting done.
- For example, You can tell the assistant work-manager to
perform a task every one hour,not to start the work until the device has network, `not to start the work until the battery is low. -
Work-managercontinues the work even if the app is in the background or the OS kills the app. - Summarizing the work-manager could intelligently use the defined factors and get the work done for you.
