Reputation: 605
I have question about push notifications in Windows phone 8. As i understand, there are three types of push notification:
So, in my opinion:
if the app is running, and opened in foreground:
if the app is running now, but suspended:
if the app is not open:
Upvotes: 2
Views: 693
Reputation: 2475
I think the situation is as follows:
Toast notification is shown only when the app is not running, but can be intercepted when it is
Tile notification always updates the tile regardless of application running
Raw notification can only be processed by the application when running.
Toast/raw notifications cannot normally be handled by a background task in Windows Phone 8.0. But there maybe a hack to get around this. See Windows Phone 8 notifications and background tasks and Windows Phone 8 Background Task with notifications
In Windows phone 8.1 it is quite possible to create a background task that is invoked when a notification is received, so the notification can be processed by the background task.
Upvotes: 2