Book Image

Visual Studio 2013 Cookbook

Book Image

Visual Studio 2013 Cookbook

Overview of this book

Table of Contents (17 chapters)
Visual Studio 2013 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Introduction


The use of asynchronous code has become more popular as a way for programmers to deal with latency and blocking operations. For example, an application running with the benefit of significant local resources is still at the mercy of the response time of other systems that it has to communicate with. Frequently, applications are waiting for the user to respond, but they shouldn't consume all available system resources while they wait.

To deal with these and similar challenges, a multithreaded code has been used. With this approach, the work that needs to be done is handled by multiple threads; so while one thread is handling network communication, another may update the display. Sometimes, this approach has its own limitations as additional threads increase complexity for the programmer and there are practical limitations on how many threads can be effectively created and utilized.

Whether your code is currently multithreaded or not, the use of asynchronous techniques can be beneficial...