SlideShare a Scribd company logo
1 of 43
Session III – Lifecycle and More
Daryl Rudolph
Agenda
Application
Lifecycle
Live
Tiles, Background
Process and
Lock Screen
Implementing the
Search Contract
Application Lifecycle
Show the flow
Feel Connected and
Alive
Memory Management
User selects app for foreground
System manages app lifetime
User launches many apps
User manages app lifetime
App process lifetime
Application States
Running
SuspendedNot Running
Resuming
Activated Suspending
Process lifetime walkthrough
When do apps get terminated
• System needs more memory
• User switch occurs
• System shutdown
• Apps crash
Apps do not get notified when
they are getting terminated
Process state transitions
5seconds
not
User
Launche
s App
Splash
screen
Suspend under the hood
• Suspended apps are not scheduled by the NT Kernel
• No CPU, Disk or Network consumed
• All threads are suspended
• Apps remain in memory
• Kernel ensures apps are not suspended in critical
sections that could cause system wide deadlocks
• Apps instantly resumed from suspend when brought to
foreground
Interacting with your users
App Activation Through Contracts
• Apps are activated through contracts
• Launch, search, ShareTarget, etc.
• Apps need to initialize contract specific actions
• Context is provided
Running App
launch
shareTarget
activated
kind
search
App crash? Start over
• Apps that are stuck are no fun
• Your app can be terminated abruptly in any of these
cases
• Too long to load
• Too long to suspend
• Stopped handling input messages (Blocking I/O on UI thread)
• Task manager
• Bring the user back home, and ignore saved user
session state
• previousExecutionState is provided in activation event
args
Best practices for saving and restoring state
Scenario You should….
User is using your
App
• Save user data incrementally
App switched away
from (Suspending)
• Save where the user is – what
screen they are on, for example
Not running App
launched by user
(Activated)
• Bring the user back and restore
their session as if they never left
Suspended App
launched by user
(Resuming)
• Do nothing
Demo
Suspend Demo
Search Contract
Finding your application
Use the Right
Contracts
Search 1 2 3
1. Search box is scoped to the
main app on screen
2. Query suggestions provided by
the main app on screen
• Autocompletes to terms for which
the app has search results
3. List of installed Windows 8 style
apps that have implemented the
search contract
Query submitted
User
Show Search
results view
Show previous
search results
view
Search Pane
Submit query to
App
Search App
Query Submitted
Event
Demo
Search Contract Demo
Live tiles
Keep the action going
Invest in a Great Tile
Badges
• Overlays status on top of tile
• Supports square and wide tiles
• Number up to 99 or pre-defined glyph:
• Always legible on top of images
BadgeBadge
Notification Queuing
• By default only last notification shown
• Opt-in to automatically cycle tile through last five
notifications
Live Tiles things to remember
• Tiles updated using pre-defined templates
• Text-only, image-only or combination
• JPEG or PNG only, max size 150 KB
• Local, cloud or background updates
Invest in a Great Tile
Demo
Live Tiles
Secondary Tiles
• Tiles created by “pinning” content from
app
• Pin initiated by app via simple runtime
call
• User confirms pin operation via system UI
• Exposes a personalized surface for app
• Same capabilities as app tiles
• Launch leads to relevant content
Demo
Secondary Tiles
RTC – Real Time Communication apps
Keep the action going
Invest in a Great Tile
Review app process lifetime
…with RTC appsThe app lifecycle
Network Trigger
RTC trigger APIs
System Trigger Time Trigger
Background Task Infrastructure
VoIP IM Your App
App OS
Network
Trigger
System
Trigger
Time
Trigger
Background Task Infrastructure
VoIP IM Mail
Changing Live Tile
Time
Trigger
Setting up a Time Trigger
Live tiles with push notifications
• Tiles can be updated even if
your app is not running!
• Push notifications can be used
to remotely update a tile on
the Start screen
• Great for showing the newest
content available to your users
App Cloud Service
Windows Push
Notification Service
(WNS)
HTTP POST
Notification
Delivered
Push Notification Overview
Notificatio
n
Client
Platform
App Service
Windows Push
Notification
Service
POST <channel URI> HTTP/1.1
Content-Type: text/xml
Host: db3.notify.windows.com
X-WNS-Type: wns/badge
Authorization: Bearer <authentication
token>
Content-Length: 58
<?xml version="1.0" encoding="utf-8"?>
<badge value="11"/>
Time
Trigger
using Windows.ApplicationModel.Background;
// Specify the trigger
TimeTrigger trigger = new TimeTrigger(UpdateInterval, Periodic);
Create time
trigger
// Associate app code with the trigger
BackgroundTaskBuilder taskBuilder = new BackgroundTaskBuilder();
taskBuilder.TaskEntryPoint = “MyApp.Background.UpdateEmailTask";
taskBuilder.SetTrigger(trigger);
taskBuilder.Name = “TimerExpiry";
Associate
trigger with
app code
// Register the task for background execution
IBackgroundTaskRegistration taskRegistration =
taskBuilder.Register();
Register
trigger
public sealed class UpdateLiveTileTask : IBackgroundTask {
public void Run(IBackgroundTaskInstance
taskInstance)
{
// Your app code to update email
}
}
}
using Windows.ApplicationModel.Background;
Time
Trigger
Demo
Live Tiles /Lock
Screen/Background
Best Practices for Tiles
• Display new, tailored and engaging content to the user
• Keep tile fresh by updating as your app content
changes
• Reference content that lives on your app’s
home page so the user can find it easily.
• Keep content safely ignorable and glanceable - for short
messages only
• Use square size if tile is not live
• No display ads! 
Agenda
Application
Lifecycle
Live Tiles,
Background
Process and
Lock Screen
Implementing the
Search Contract
Hands-On Lab 3 OR Create your own app
Running in the background
Create your own app
• You can work on Hands-on Lab 3 OR Create your own
app
• You have until 4:20 PM
• Don’t have to decide if you are entering until 4:20 PM
• Presentation can be PowerPoint and/or demonstration
• Must let me know beforehand if you don’t have VGA
connection
• Each contestant will have exactly 3 minutes to present!
• Be creative. Keep in mind the traits of a great Windows
8 app!
• Note: Anyone who attended today can enter to win the
app contest sponsored by Component Art for a $10,000
grand prize, even if you don’t enter today’s contest.
Contact/References
• Magenic – http://www.magenic.com
• Daryl Rudolph – darylr@magenic.com
• http://dev.windows.com
• http://design.windows.com
• API Sites
• http://www.restfulwebservices.net
• http://developer.mashery.com/apis
• http://www.programmableweb.com

More Related Content

Viewers also liked

Windows 8 DevUnleashed - Session 2
Windows 8 DevUnleashed - Session 2Windows 8 DevUnleashed - Session 2
Windows 8 DevUnleashed - Session 2drudolph11
 
Windows 8 DevUnleashed - Session 1
Windows 8 DevUnleashed - Session 1Windows 8 DevUnleashed - Session 1
Windows 8 DevUnleashed - Session 1drudolph11
 
Utilisation des capteurs dans les applications windows 8
Utilisation des capteurs dans les applications windows 8Utilisation des capteurs dans les applications windows 8
Utilisation des capteurs dans les applications windows 8Intel Developer Zone Community
 
Humix Introduction 0528
Humix Introduction 0528Humix Introduction 0528
Humix Introduction 0528Jeffrey Liu
 
NFC & The Growth of Connected Consumer Electronics Devices
NFC & The Growth of Connected Consumer Electronics DevicesNFC & The Growth of Connected Consumer Electronics Devices
NFC & The Growth of Connected Consumer Electronics DevicesNFC Forum
 

Viewers also liked (7)

Windows 8 DevUnleashed - Session 2
Windows 8 DevUnleashed - Session 2Windows 8 DevUnleashed - Session 2
Windows 8 DevUnleashed - Session 2
 
Iot
IotIot
Iot
 
Windows 8 DevUnleashed - Session 1
Windows 8 DevUnleashed - Session 1Windows 8 DevUnleashed - Session 1
Windows 8 DevUnleashed - Session 1
 
Utilisation des capteurs dans les applications windows 8
Utilisation des capteurs dans les applications windows 8Utilisation des capteurs dans les applications windows 8
Utilisation des capteurs dans les applications windows 8
 
Humix Introduction 0528
Humix Introduction 0528Humix Introduction 0528
Humix Introduction 0528
 
NFC & The Growth of Connected Consumer Electronics Devices
NFC & The Growth of Connected Consumer Electronics DevicesNFC & The Growth of Connected Consumer Electronics Devices
NFC & The Growth of Connected Consumer Electronics Devices
 
Window architecture
Window architecture Window architecture
Window architecture
 

Similar to Windows 8 DevUnleashed - Session 3

08.Push Notifications
08.Push Notifications 08.Push Notifications
08.Push Notifications Nguyen Tuan
 
A look behind the scenes: Windows 8 background processing
A look behind the scenes: Windows 8 background processingA look behind the scenes: Windows 8 background processing
A look behind the scenes: Windows 8 background processingMatt Lacey
 
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...Postman
 
Android Trainning Session 2
Android Trainning  Session 2Android Trainning  Session 2
Android Trainning Session 2Shanmugapriya D
 
Data Transfer between activities and Database
Data Transfer between activities and Database Data Transfer between activities and Database
Data Transfer between activities and Database faiz324545
 
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications QIRIS
 
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)PROIDEA
 
Windows Phone 8 - 8 Tiles and Lock Screen Notifications
Windows Phone 8 - 8 Tiles and Lock Screen NotificationsWindows Phone 8 - 8 Tiles and Lock Screen Notifications
Windows Phone 8 - 8 Tiles and Lock Screen NotificationsOliver Scheer
 
Live Tiles and Notifications in Windows Phone
Live Tiles and Notifications in Windows PhoneLive Tiles and Notifications in Windows Phone
Live Tiles and Notifications in Windows PhoneDave Bost
 
Windows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsWindows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsOliver Scheer
 
Mdm with config mgr nico
Mdm with config mgr nicoMdm with config mgr nico
Mdm with config mgr nicoKenny Buntinx
 

Similar to Windows 8 DevUnleashed - Session 3 (20)

Windows 8 BootCamp
Windows 8 BootCampWindows 8 BootCamp
Windows 8 BootCamp
 
08.Push Notifications
08.Push Notifications 08.Push Notifications
08.Push Notifications
 
A look behind the scenes: Windows 8 background processing
A look behind the scenes: Windows 8 background processingA look behind the scenes: Windows 8 background processing
A look behind the scenes: Windows 8 background processing
 
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
 
Windows 8 Client Part 2 "The Application internals for IT-Pro's"
Windows 8 Client Part 2 "The Application internals for IT-Pro's"  Windows 8 Client Part 2 "The Application internals for IT-Pro's"
Windows 8 Client Part 2 "The Application internals for IT-Pro's"
 
Developing on Windows 8
Developing on Windows 8Developing on Windows 8
Developing on Windows 8
 
Android Trainning Session 2
Android Trainning  Session 2Android Trainning  Session 2
Android Trainning Session 2
 
Data Transfer between activities and Database
Data Transfer between activities and Database Data Transfer between activities and Database
Data Transfer between activities and Database
 
Syncitall
SyncitallSyncitall
Syncitall
 
Google app engine
Google app engineGoogle app engine
Google app engine
 
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications
follow-app BOOTCAMP 2 - Windows Phone: Tiles and Notifications
 
Best android classes in mumbai
Best android classes in mumbaiBest android classes in mumbai
Best android classes in mumbai
 
Android overview
Android overviewAndroid overview
Android overview
 
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)
4Developers 2018: Zero-Downtime deployments with Kubernetes (Mateusz Dymiński)
 
Android by Swecha
Android by SwechaAndroid by Swecha
Android by Swecha
 
Windows Phone 8 - 8 Tiles and Lock Screen Notifications
Windows Phone 8 - 8 Tiles and Lock Screen NotificationsWindows Phone 8 - 8 Tiles and Lock Screen Notifications
Windows Phone 8 - 8 Tiles and Lock Screen Notifications
 
Live Tiles and Notifications in Windows Phone
Live Tiles and Notifications in Windows PhoneLive Tiles and Notifications in Windows Phone
Live Tiles and Notifications in Windows Phone
 
Windows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsWindows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background Agents
 
Mdm with config mgr nico
Mdm with config mgr nicoMdm with config mgr nico
Mdm with config mgr nico
 
Mdm with config mgr nico
Mdm with config mgr nicoMdm with config mgr nico
Mdm with config mgr nico
 

Recently uploaded

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 

Recently uploaded (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 

Windows 8 DevUnleashed - Session 3

  • 1. Session III – Lifecycle and More Daryl Rudolph
  • 3. Application Lifecycle Show the flow Feel Connected and Alive
  • 4. Memory Management User selects app for foreground System manages app lifetime User launches many apps User manages app lifetime
  • 8. When do apps get terminated • System needs more memory • User switch occurs • System shutdown • Apps crash Apps do not get notified when they are getting terminated
  • 10. Suspend under the hood • Suspended apps are not scheduled by the NT Kernel • No CPU, Disk or Network consumed • All threads are suspended • Apps remain in memory • Kernel ensures apps are not suspended in critical sections that could cause system wide deadlocks • Apps instantly resumed from suspend when brought to foreground
  • 12. App Activation Through Contracts • Apps are activated through contracts • Launch, search, ShareTarget, etc. • Apps need to initialize contract specific actions • Context is provided Running App launch shareTarget activated kind search
  • 13. App crash? Start over • Apps that are stuck are no fun • Your app can be terminated abruptly in any of these cases • Too long to load • Too long to suspend • Stopped handling input messages (Blocking I/O on UI thread) • Task manager • Bring the user back home, and ignore saved user session state • previousExecutionState is provided in activation event args
  • 14. Best practices for saving and restoring state Scenario You should…. User is using your App • Save user data incrementally App switched away from (Suspending) • Save where the user is – what screen they are on, for example Not running App launched by user (Activated) • Bring the user back and restore their session as if they never left Suspended App launched by user (Resuming) • Do nothing
  • 16. Search Contract Finding your application Use the Right Contracts
  • 17. Search 1 2 3 1. Search box is scoped to the main app on screen 2. Query suggestions provided by the main app on screen • Autocompletes to terms for which the app has search results 3. List of installed Windows 8 style apps that have implemented the search contract
  • 18. Query submitted User Show Search results view Show previous search results view Search Pane Submit query to App Search App Query Submitted Event
  • 20. Live tiles Keep the action going Invest in a Great Tile
  • 21.
  • 22.
  • 23. Badges • Overlays status on top of tile • Supports square and wide tiles • Number up to 99 or pre-defined glyph: • Always legible on top of images BadgeBadge
  • 24. Notification Queuing • By default only last notification shown • Opt-in to automatically cycle tile through last five notifications
  • 25. Live Tiles things to remember • Tiles updated using pre-defined templates • Text-only, image-only or combination • JPEG or PNG only, max size 150 KB • Local, cloud or background updates Invest in a Great Tile
  • 27. Secondary Tiles • Tiles created by “pinning” content from app • Pin initiated by app via simple runtime call • User confirms pin operation via system UI • Exposes a personalized surface for app • Same capabilities as app tiles • Launch leads to relevant content
  • 29. RTC – Real Time Communication apps Keep the action going Invest in a Great Tile
  • 30. Review app process lifetime
  • 31. …with RTC appsThe app lifecycle
  • 32. Network Trigger RTC trigger APIs System Trigger Time Trigger Background Task Infrastructure VoIP IM Your App App OS
  • 33. Network Trigger System Trigger Time Trigger Background Task Infrastructure VoIP IM Mail Changing Live Tile Time Trigger Setting up a Time Trigger
  • 34. Live tiles with push notifications • Tiles can be updated even if your app is not running! • Push notifications can be used to remotely update a tile on the Start screen • Great for showing the newest content available to your users App Cloud Service Windows Push Notification Service (WNS) HTTP POST Notification Delivered
  • 35. Push Notification Overview Notificatio n Client Platform App Service Windows Push Notification Service POST <channel URI> HTTP/1.1 Content-Type: text/xml Host: db3.notify.windows.com X-WNS-Type: wns/badge Authorization: Bearer <authentication token> Content-Length: 58 <?xml version="1.0" encoding="utf-8"?> <badge value="11"/>
  • 36. Time Trigger using Windows.ApplicationModel.Background; // Specify the trigger TimeTrigger trigger = new TimeTrigger(UpdateInterval, Periodic); Create time trigger // Associate app code with the trigger BackgroundTaskBuilder taskBuilder = new BackgroundTaskBuilder(); taskBuilder.TaskEntryPoint = “MyApp.Background.UpdateEmailTask"; taskBuilder.SetTrigger(trigger); taskBuilder.Name = “TimerExpiry"; Associate trigger with app code // Register the task for background execution IBackgroundTaskRegistration taskRegistration = taskBuilder.Register(); Register trigger
  • 37. public sealed class UpdateLiveTileTask : IBackgroundTask { public void Run(IBackgroundTaskInstance taskInstance) { // Your app code to update email } } } using Windows.ApplicationModel.Background; Time Trigger
  • 39. Best Practices for Tiles • Display new, tailored and engaging content to the user • Keep tile fresh by updating as your app content changes • Reference content that lives on your app’s home page so the user can find it easily. • Keep content safely ignorable and glanceable - for short messages only • Use square size if tile is not live • No display ads! 
  • 41. Hands-On Lab 3 OR Create your own app Running in the background
  • 42. Create your own app • You can work on Hands-on Lab 3 OR Create your own app • You have until 4:20 PM • Don’t have to decide if you are entering until 4:20 PM • Presentation can be PowerPoint and/or demonstration • Must let me know beforehand if you don’t have VGA connection • Each contestant will have exactly 3 minutes to present! • Be creative. Keep in mind the traits of a great Windows 8 app! • Note: Anyone who attended today can enter to win the app contest sponsored by Component Art for a $10,000 grand prize, even if you don’t enter today’s contest.
  • 43. Contact/References • Magenic – http://www.magenic.com • Daryl Rudolph – darylr@magenic.com • http://dev.windows.com • http://design.windows.com • API Sites • http://www.restfulwebservices.net • http://developer.mashery.com/apis • http://www.programmableweb.com