Phone 7 Simulates ContinuityPhone 7 Simulates Continuity

Tombstoning is one way Windows Phone 7 stands out

information Staff, Contributor

February 2, 2011

3 Min Read
information logo in a gray background | information

A mobile operating system is totally different from a desktop OS when it comes to how programs start and quit. With a desktop operating system, the user typically starts and quits applications. In a mobile environment, a user is allowed only to launch applications. The system terminates them.

Borrowing Java and C# terminology, in a mobile environment, at some point the operating system scheduler "garbage collects" all the running apps and terminates them when appropriate. This pseudo garbage collector operates on launched applications that are no longer interacting with the user in the foreground. These application instances are called "background" applications, though exactly what constitutes a background application varies from device to device. Android and iOS are similar in this respect, but Windows Phone 7 handles background applications a bit differently. Let's dig it out.

All major mobile platforms allow you to have only one application at a time controlling the device. When the user starts a new application, the one previously in the foreground goes to the background, ready to be resumed if the user returns to it using the Back button or starts a new instance. At this level, all platforms are the same.

With iOS and Android, application instances in the background remain live applications and can be resumed instantly when the user clicks on them or attempts to start a new instance. However, the operating system reserves the right to kill background applications in order to reclaim resources should they be needed. When the user attempts to resume a killed background application, he gets a new instance.

In Windows Phone 7, if the user closes an application by hitting the Back button, then the application is killed and removed from memory. The application is notified of this and has a chance to save some state to the permanent storage. By fetching this state upon reloading, the application can attempt to restore the last known state and provide the user with a continuous experience.

If the user simply replaces a currently running application with another--for example, he launches another application--then the first application is deactivated and closed. This process is known as tombstoning. While being deactivated, the application has 10 seconds to save its state in either permanent or transient storage. Data in transient storage is managed by the operating system and maintained as long as possible depending on resource demand.

When the user resumes a previously tombstoned application, the system launches a new instance and automatically passes on any transient data. The developer is responsible for using this data to restore the previous state, thus simulating continuity. If transient data is no longer available, then the behavior is the same as if the application were explicitly closed.

A big difference between Windows Phone 7 and other mobile platforms is in the behavior of applications that aren't running. In Windows Phone 7, tombstoned applications are dead. In iOS, these background applications can get extra processing time by using a system-provided API that allows only certain tasks. In Android, background applications can trigger a special service--essentially a UI-less application--that keeps working without restrictions, which can end up being a major drain on the battery.

The bottom line is that a Windows Phone 7 user can abandon an application and then resume it exactly where he left off. This behavior is application specific, however, and doesn't come from the operating system as it does with iOS and Android.

Read more about:

20112011
Never Miss a Beat: Get a snapshot of the issues affecting the IT industry straight to your inbox.

You May Also Like


More Insights