站内搜索: 请输入搜索关键词
当前页面: 图书首页 > Java Concurrency in Practice

Chapter 6.  Task Execution - Java Concurrency in Practice

Previous Page
Next Page

Chapter 6. Task Execution

Most concurrent applications are organized around the execution of tasks: abstract, discrete units of work. Dividing the work of an application into tasks simplifies program organization, facilitates error recovery by providing natural transaction boundaries, and promotes concurrency by providing a natural structure for parallelizing work.


Previous Page
Next Page