mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 22:58:36 +00:00
465a6871b2
* refactor: move tests of leader-followers into correct package * dep: remove version constraint for Mockito in acyclic-visitor * dep: remove version constraint for Mockito in caching * chore: cleanup mockito-core import on some POMs * dep: upgrade core.mocktio 3.5.6 to 4.5.1 "- org.mockito.Mockito#verifyZeroInteractions an alias of verifyNoMoreInteractions" https://github.com/mockito/mockito/commit/caf35b24e2764df0498469526ecb3e7ec68a0430
title, category, language, tags
| title | category | language | tags | |
|---|---|---|---|---|
| Half-Sync/Half-Async | Concurrency | en |
|
Intent
The Half-Sync/Half-Async pattern decouples synchronous I/O from asynchronous I/O in a system to simplify concurrent programming effort without degrading execution efficiency.
Class diagram
Applicability
Use Half-Sync/Half-Async pattern when
- a system possesses following characteristics:
- the system must perform tasks in response to external events that occur asynchronously, like hardware interrupts in OS
- it is inefficient to dedicate separate thread of control to perform synchronous I/O for each external source of event
- the higher level tasks in the system can be simplified significantly if I/O is performed synchronously.
- one or more tasks in a system must run in a single thread of control, while other tasks may benefit from multi-threading.
