- JavaScript Concurrency
- Adam Boduch
- 297字
- 2021-07-30 09:48:39
Chapter 2. The JavaScript Execution Model
The first chapter of this book explored the state of JavaScript concurrency. Generally speaking, dealing with concurrency in JavaScript applications is anything but a trivial matter. There's a lot to think about when writing concurrent JavaScript code, and the kind of solutions that we come up with are often unorthodox. There's a lot of callbacks, and wading through all of them is enough to drive a person insane. We also caught a glimpse of how our pattern of writing concurrent JavaScript code has started to change with existing concurrency components. Web workers have started to mature, and JavaScript language concurrency constructs have only just been introduced.
The language and the runtime environment only get us partway there. We need to think about concurrency at the design level, rather than after the fact. Concurrency should be the default. This is easy to say and very difficult to do. Throughout this book, we're going to explore all that the JavaScript concurrency features have to offer, and how we can best use them to our advantage as design tools. But, before we do this, we need to go into depth on what's really happening when our JavaScript runs. This knowledge is an essential input to designing concurrent applications, because we'll know exactly what to expect when choosing one concurrency mechanism over another.
In this chapter, we'll start with the browser environment, by looking at all the subsystems that our code touches—such as the JavaScript interpreter, the task queue, and the DOM itself. Then we'll walk through some code that will shed some light on what's really happening behind the scenes to orchestrate our code. We'll close the chapter with a discussion on the challenges that we face with this model.
- Reporting with Visual Studio and Crystal Reports
- Drupal 8 Configuration Management
- Linux Device Drivers Development
- 區塊鏈技術與應用
- C# Multithreaded and Parallel Programming
- JavaScript程序設計(第2版)
- Test-Driven JavaScript Development
- Python從入門到精通(第3版)
- Python網絡爬蟲技術與應用
- Vue.js 3應用開發與核心源碼解析
- Android系統下Java編程詳解
- Web前端開發技術:HTML、CSS、JavaScript
- 實戰Python網絡爬蟲
- jQuery Mobile Web Development Essentials(Second Edition)
- 透視C#核心技術:系統架構及移動端開發