SlideShare a Scribd company logo
C# Async on iOS and Android
Miguel de Icaza, CTO
@migueldeicaza
C# 5.0 Async on iOS and Android
• Just released our C# 5 compiler
– Async programming
• Support both .NET Base Class Libraries Async
• Async-ready APIs for iOS and Android
Asynchronous Programming
Desire to build responsive applications
Fluid Uis allows for 60 fps
16m
32ms
64ms
Respond to user input
Responding to Input
Get events
Dispatch
Update display
Get events
Dispatch
Update display
C# and Lambdas
• They add a whole level of sanity
• Shared state across lambdas
– Compiler does the heavy lifting
• Requires all lambdas to share a scope
Events: Some idioms
Perform Long-Running Operations
Long-running tasks
• Background threads
• Setup your own
handshake protocol
• Various idioms available
Slow file system or database access
Network access
More callbacks
Get events
Dispatch
Update display
Get events
Dispatch
Update display
DB
Net
Fluid Uis allows for 60 fps
16m
32ms
64ms
Callback Hell
Just the other day
Callback Hell
Problems with callbacks
• Control flow is difficult
– Achieved by choosing what to call next
– Tracking state across callbacks
• Updating code is cumbersome
– Error prone
• Error reporting is bolted on the basic framework
– Poor, and recovery is typically obnoxious, or non-existent
Go To Statement Considered Harmful
“our intellectual powers are rather geared to master static
relations and that our powers to visualize processes evolving
in time are relatively poorly developed.
For that reason we should do our utmost to shorten the
conceptual gap between the static program and the dynamic
process, to make the correspondence between the program
(spread out in text space) and the process (spread out in time)
as trivial as possible.” – Edsger W Dijkstra
How did we cope with GoTo?
• New idioms
– Structured Programming
• Better languages
– We had the compiler do the work for us
Callback Hell
C# Async – The Calm after the Storm
Evolution: Tasks
• Reasoning about background operations
– Task and Task<T> types
• They encapsulate a unit of work, and have:
– State: running, finished, cancelled
– Result
– Exceptions thrown (if any)
Thinking with Tasks
• Many useful operations:
– Wait: Task.WaitAny (t1, t2, t3)
– Wait: Task.WaitAll (t1, t2, t3)
– Chain: task1.ContinueWith (task2);
– Wrap: Task.WhenAny (t1, t2, t3);
– Wrap: Task.WhenAll (t1, t2, t3);
Writing beautiful code
ShowAlert – creating your own
With UIKit Animation
Async Support
• Base Class Libraries:
– Expect all the standard Async APIs from .NET BCL
– Coverage is .NET 4.5 Complete for BCL
• More Async Sources:
– Xamarin.iOS: 174
– Xamarin.Android: 337
– Xamarin.Mobile
– Xamarin Component Store
What is available as Async?
• Simple Rule:
– Any API that would take more than 50ms to run

More Related Content

PPT
C# Async on iOS and Android - Craig Dunn, Developer Evangelist at Xamarin
PDF
Async Await for Mobile Apps
PDF
Using Async in your Mobile Apps - Marek Safar
PPTX
Sync with async
PDF
Technology | Serverless
PPTX
Continuous deployment of Rails apps on AWS OpsWorks
PDF
React meets o OCalm
PDF
Plaλ!
C# Async on iOS and Android - Craig Dunn, Developer Evangelist at Xamarin
Async Await for Mobile Apps
Using Async in your Mobile Apps - Marek Safar
Sync with async
Technology | Serverless
Continuous deployment of Rails apps on AWS OpsWorks
React meets o OCalm
Plaλ!

What's hot (19)

PDF
Async/Await: TPL & Message Pumps
PPTX
Where is my scalable api?
PPTX
Top 10 RxJs Operators in Angular
PDF
Aws lambda best practices - ignite - dev opsdays-charlotte
PPTX
2020.02.15 DelEx - CI/CD in AWS Cloud
PDF
Leveragong splunk for finding needle in the Haystack
PDF
Cortex: Prometheus as a Service, One Year On
PPTX
Load Testing with Taurus using Jenkins and AWS
PPTX
Node js with steroids
PPTX
Developer day - AWS: Fast Environments = Fast Deployments
PDF
Things you wish you never knew about the Prometheus Remote Write API.
PPTX
Gearman & PHP
PPTX
Helpful into to Rx
PDF
Microservices: Lessons Learned
PPTX
Alfresco Development Framework Basic
PDF
Cloudformation vs terraform_vs_ansible
PDF
COSCUP 2017 - infrastructure As Code
PPTX
Reactive
PDF
Scaffolding for Serverless: lightning talk for AWS Arlington Meetup
Async/Await: TPL & Message Pumps
Where is my scalable api?
Top 10 RxJs Operators in Angular
Aws lambda best practices - ignite - dev opsdays-charlotte
2020.02.15 DelEx - CI/CD in AWS Cloud
Leveragong splunk for finding needle in the Haystack
Cortex: Prometheus as a Service, One Year On
Load Testing with Taurus using Jenkins and AWS
Node js with steroids
Developer day - AWS: Fast Environments = Fast Deployments
Things you wish you never knew about the Prometheus Remote Write API.
Gearman & PHP
Helpful into to Rx
Microservices: Lessons Learned
Alfresco Development Framework Basic
Cloudformation vs terraform_vs_ansible
COSCUP 2017 - infrastructure As Code
Reactive
Scaffolding for Serverless: lightning talk for AWS Arlington Meetup
Ad

Viewers also liked (20)

PDF
C# everywhere
PDF
Developing native iOS & Android apps in c# with xamarin
PDF
Get Ready for Agile Methods: How to manage constant and rapid change in IT pr...
PDF
Eclipse Day India 2015 - Keynote - Stephan Herrmann
PDF
Get Functional on the CLR: Intro to Functional Programming with F#
PPTX
No silver bullet essence and accidents of software engineering
PPTX
No silver bullet
PDF
Swift and Kotlin Presentation
PPTX
An Empirical Study of Goto in C Code from GitHub Repositories
PDF
Software reliability engineering
PPTX
Dia 1 intro to mobile and xamarin
PPTX
Cross Platform Mobile Development with C# and Xamarin
PDF
Chapter 7 software reliability
PDF
Building Your First Xamarin.Forms App
PPTX
MOBILE PHONE CLONING-Steginjoy2013@gmail.com
PDF
Agile Is the New Waterfall
PPTX
Mobile cloning
PPTX
Mobile phone-cloning
PPTX
Green computing
C# everywhere
Developing native iOS & Android apps in c# with xamarin
Get Ready for Agile Methods: How to manage constant and rapid change in IT pr...
Eclipse Day India 2015 - Keynote - Stephan Herrmann
Get Functional on the CLR: Intro to Functional Programming with F#
No silver bullet essence and accidents of software engineering
No silver bullet
Swift and Kotlin Presentation
An Empirical Study of Goto in C Code from GitHub Repositories
Software reliability engineering
Dia 1 intro to mobile and xamarin
Cross Platform Mobile Development with C# and Xamarin
Chapter 7 software reliability
Building Your First Xamarin.Forms App
MOBILE PHONE CLONING-Steginjoy2013@gmail.com
Agile Is the New Waterfall
Mobile cloning
Mobile phone-cloning
Green computing
Ad

Similar to C# Async on iOS and Android - Miguel de Icaza, CTO of Xamarin (20)

PDF
Xamarin v.Now
PPTX
C# 5 deep drive into asynchronous programming
PDF
The Evolution of Async-Programming on .NET Platform (.Net China, C#)
PDF
I see deadlocks : Matt Ellis - Techorama NL 2024
PPTX
Async Programming in C# 5
PPSX
What’s New In C# 5.0 - iseltech'13
PDF
Paulo morgado what's new in c# 5.0
PPTX
Training – Going Async
PDF
Why async matters
PPTX
Binary Studio Academy: Concurrency in C# 5.0
PPTX
Async CTP 3 Presentation for MUGH 2012
PPTX
C# Async/Await Explained
PPTX
Revealing C# 5
PPTX
Develop business apps cross-platform development using visual studio with x...
PPTX
Asynchronous programming - .NET Way
PPSX
What's new in c# 5.0 net ponto
PPTX
Mini .net conf 2020
PPTX
NDC Sydney 2019 - Async Demystified -- Karel Zikmund
PPTX
Asynchronous Programming in .NET
PPSX
As novidades do C# 5.0
Xamarin v.Now
C# 5 deep drive into asynchronous programming
The Evolution of Async-Programming on .NET Platform (.Net China, C#)
I see deadlocks : Matt Ellis - Techorama NL 2024
Async Programming in C# 5
What’s New In C# 5.0 - iseltech'13
Paulo morgado what's new in c# 5.0
Training – Going Async
Why async matters
Binary Studio Academy: Concurrency in C# 5.0
Async CTP 3 Presentation for MUGH 2012
C# Async/Await Explained
Revealing C# 5
Develop business apps cross-platform development using visual studio with x...
Asynchronous programming - .NET Way
What's new in c# 5.0 net ponto
Mini .net conf 2020
NDC Sydney 2019 - Async Demystified -- Karel Zikmund
Asynchronous Programming in .NET
As novidades do C# 5.0

More from Xamarin (20)

PDF
Xamarin University Presents: Building Your First Intelligent App with Xamarin...
PDF
Xamarin University Presents: Ship Better Apps with Visual Studio App Center
PDF
Get the Most Out of iOS 11 with Visual Studio Tools for Xamarin
PDF
Get the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
PDF
Creative Hacking: Delivering React Native App A/B Testing Using CodePush
PDF
Build Better Games with Unity and Microsoft Azure
PDF
Exploring UrhoSharp 3D with Xamarin Workbooks
PDF
Desktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
PDF
Developer’s Intro to Azure Machine Learning
PDF
Customizing Xamarin.Forms UI
PDF
Session 4 - Xamarin Partner Program, Events and Resources
PDF
Session 3 - Driving Mobile Growth and Profitability
PDF
Session 2 - Emerging Technologies in your Mobile Practice
PDF
Session 1 - Transformative Opportunities in Mobile and Cloud
PDF
SkiaSharp Graphics for Xamarin.Forms
PDF
Building Games for iOS, macOS, and tvOS with Visual Studio and Azure
PDF
Intro to Xamarin.Forms for Visual Studio 2017
PDF
Connected Mobile Apps with Microsoft Azure
PDF
Introduction to Xamarin for Visual Studio 2017
PDF
Building Your First iOS App with Xamarin for Visual Studio
Xamarin University Presents: Building Your First Intelligent App with Xamarin...
Xamarin University Presents: Ship Better Apps with Visual Studio App Center
Get the Most Out of iOS 11 with Visual Studio Tools for Xamarin
Get the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
Creative Hacking: Delivering React Native App A/B Testing Using CodePush
Build Better Games with Unity and Microsoft Azure
Exploring UrhoSharp 3D with Xamarin Workbooks
Desktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
Developer’s Intro to Azure Machine Learning
Customizing Xamarin.Forms UI
Session 4 - Xamarin Partner Program, Events and Resources
Session 3 - Driving Mobile Growth and Profitability
Session 2 - Emerging Technologies in your Mobile Practice
Session 1 - Transformative Opportunities in Mobile and Cloud
SkiaSharp Graphics for Xamarin.Forms
Building Games for iOS, macOS, and tvOS with Visual Studio and Azure
Intro to Xamarin.Forms for Visual Studio 2017
Connected Mobile Apps with Microsoft Azure
Introduction to Xamarin for Visual Studio 2017
Building Your First iOS App with Xamarin for Visual Studio

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
cuic standard and advanced reporting.pdf
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Electronic commerce courselecture one. Pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Big Data Technologies - Introduction.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
MIND Revenue Release Quarter 2 2025 Press Release
Digital-Transformation-Roadmap-for-Companies.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
cuic standard and advanced reporting.pdf
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Electronic commerce courselecture one. Pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Dropbox Q2 2025 Financial Results & Investor Presentation
Mobile App Security Testing_ A Comprehensive Guide.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Spectroscopy.pptx food analysis technology
Big Data Technologies - Introduction.pptx

C# Async on iOS and Android - Miguel de Icaza, CTO of Xamarin