...

/

Introduction to Concurrent Programs

Introduction to Concurrent Programs

Learn the concept of concurrency and pipelines.

Concurrency

Concurrency is the art of doing several things at the same time, correctly and efficiently. To accomplish this, we structure our programs to take advantage of time so that tasks run together in the most efficient way.

Examples of everyday concurrency in applications include keeping the user interface responsive while other activities are taking place, and processing hundreds of customers’ orders efficiently.

In this chapter, we’ll explore concurrency and ...