Difference between revisions of "Background process"

From MgmtWiki
Jump to: navigation, search
(Context)
(Solutions)
Line 9: Line 9:
  
 
==Solutions==
 
==Solutions==
 +
* See the page on [[Service Worker]]s for a discussion of how background process work in a [[Web App]]. The [[Service Worker]] is delivered with the [[Web App]] but runs independently by the device's operating system. The [[Web App]] is run within the browser.
 +
* In a [[Native App]] multitasking is provided natively and the [[Foreground process]]es and [[Background process]]es can be bundled into a single app.
 +
 
==Smartphones==
 
==Smartphones==
 
Most current versions of [[Smart Phone]]s  now include the ability to start background processes.  Due to hardware limits, background processes on mobile operating systems are often restricted to certain tasks or consumption levels.  On [[Android (operating system)|Android]], CPU use for background processes is bounded at 5 - 10%.<ref name="phone"> Matt Buchanan ''giz-explains-how-multitasking-works-on-a-phone'' Gizmodo (2010-04-21) https://gizmodo.com/5527407/ https://web.archive.org/web/20101017123040/http://gizmodo.com/5527407/giz-explains-how-multitasking-works-on-a-phone</ref>  Third-party applications on Apple's [[iOS]] are limited to a subset of functions while running in the background.  On both iOS and Android, background processes can be killed by the system if they are using too much memory.
 
Most current versions of [[Smart Phone]]s  now include the ability to start background processes.  Due to hardware limits, background processes on mobile operating systems are often restricted to certain tasks or consumption levels.  On [[Android (operating system)|Android]], CPU use for background processes is bounded at 5 - 10%.<ref name="phone"> Matt Buchanan ''giz-explains-how-multitasking-works-on-a-phone'' Gizmodo (2010-04-21) https://gizmodo.com/5527407/ https://web.archive.org/web/20101017123040/http://gizmodo.com/5527407/giz-explains-how-multitasking-works-on-a-phone</ref>  Third-party applications on Apple's [[iOS]] are limited to a subset of functions while running in the background.  On both iOS and Android, background processes can be killed by the system if they are using too much memory.

Revision as of 09:44, 18 May 2019

Full Title

A Background process is a computer program that has no User Experience components.

Context

  • Computer systems typically interact with users (or with other process) interactively. The part of the system that is reacting to these external events it typically called the Foreground process which the other parts of the system are referred to as the Background process.

Problems

Solutions

Smartphones

Most current versions of Smart Phones now include the ability to start background processes. Due to hardware limits, background processes on mobile operating systems are often restricted to certain tasks or consumption levels. On Android, CPU use for background processes is bounded at 5 - 10%.[1] Third-party applications on Apple's iOS are limited to a subset of functions while running in the background. On both iOS and Android, background processes can be killed by the system if they are using too much memory.

References

  1. Matt Buchanan giz-explains-how-multitasking-works-on-a-phone Gizmodo (2010-04-21) https://gizmodo.com/5527407/ https://web.archive.org/web/20101017123040/http://gizmodo.com/5527407/giz-explains-how-multitasking-works-on-a-phone