- Learning Concurrency in Kotlin
- Miguel Angel Castiblanco Torres
- 120字
- 2021-08-05 10:46:40
Processes
A process is an instance of an application that is being executed. Each time an application is started, a process is started for it. A process has a state; things such as handles to open resources, a process ID, data, network connections, and so on, are part of the state of a process and can be accessed by the threads inside that process.
An application can be composed of many processes, a common practice for example for internet browsers. But implementing a multi-process application brings challenges that are out of the scope of this book. For this book, we will cover the implementation of applications that run in more than one thread, but still in a single process.
推薦閱讀
- Web應用系統(tǒng)開發(fā)實踐(C#)
- Qt 5 and OpenCV 4 Computer Vision Projects
- ASP.NET Core 2 and Vue.js
- Python數(shù)據(jù)可視化之Matplotlib與Pyecharts實戰(zhàn)
- iOS編程基礎:Swift、Xcode和Cocoa入門指南
- Mastering Drupal 8 Views
- Webpack實戰(zhàn):入門、進階與調優(yōu)
- IBM Cognos Business Intelligence 10.1 Dashboarding cookbook
- Java并發(fā)編程之美
- TypeScript 2.x By Example
- Android Game Programming by Example
- Robot Framework Test Automation
- iOS Development with Xamarin Cookbook
- Building Web and Mobile ArcGIS Server Applications with JavaScript(Second Edition)
- TensorFlow.NET實戰(zhàn)