Asynchronous Programming in .NET Core

Asynchronous Programming in .NET Core

English | MP4 | AVC 1920×1080 | AAC 48KHz 2ch | 1h 22m | 166 MB

Dive into the best practices of Asynchronous programming through real-world applications

In the age of complex computing and real-time reporting, applications are not fully capable of stepping up to the pace of modern-day requirements. Do you face the problem of scalability, responsiveness in server apps and want to get rid of it. Moving to Asynchronous programming will make it easy to tackle this problem. In this course, we will cover the Task Parallel library that solves all these problems in an efficient and cost-effective way with the asynchronous functionality in our apps.You’ll be able to avoid performance bottlenecks and enhance the overall responsiveness of your application by using asynchronous programming. You will learn about the benefits of the asynchronous approach and how that helps organizations manage resources efficiently, in particular for serving customers during peak hours. By the end of this course, you will be able to write more efficient, neat, readable and scalable code for both the server and client side applications in the most productive and cost-effective way.

This course contains examples and demonstrations and will walk you through everything you need to know step by step, by providing you with helpful tips along the way. At the end of the modules, there will be quizzes to help reinforce the topics that you learned from the module.

What You Will Learn

  • Deal with heavy server-side processing while managing a connection with your clients.
  • Give an excellent user experience by solving the major UI problems like Frozen and Stuck UI.
  • Understand single-threaded and multithreaded solutions, their problems and best-optimized solutions depending on the need of your enterprise or product.
  • Differentiate between Concurrent, Parallel and Asynchronous Programming patterns and learn when to use it.
  • Use Task Parallel Library and implementing it in the variety of ways in your applications.
  • Create an asynchronous WPF application. Increase the performance and responsiveness of your application
  • Best practices of TPL to fine tune your application even further.
Table of Contents

Introduction to Asynchronous Programming
1 Course Overview
2 What Is Asynchronous Programming

Problem Solving with Asynchronous Programming
3 Understanding Responsiveness
4 Why Scalability Is Needed in the Applications
5 Applying Multithreaded Solutions
6 Concurrent Versus Parallel Versus Asynchronous Programming
7 Asynchronous Programing with Real-world Examples

Asynchronous Programming Using Task Parallel Library
8 Async Await Keywords
9 Awaitable Types and .NET Core
10 Workflow of an Asynchronous Function
11 Synchronization Context

Developing an Application with Asynchronous Programming
12 Writing a Console Application in .NET Core
13 WPF Application to Solve GUI Level Issues
14 Application Behaviour with and without Async Await Keywords
15 Error and Exception Handling

Best Practices in Task Parallel Library
16 Number of Threads Required in Your Application
17 Returning a Void in Async Function
18 Windows Runtime API