java-design-patterns/half-sync-half-async
Alexander Ivanov 4904d7eea0 #1021: Fix checkstyle warnings by changing the license header template (#1027)
* Add custom license header style in order to comply with Google's Checkstyle format

* Update license headers to comply with Google's Checkstyle format
2019-10-22 08:15:35 +03:00
..
2017-11-28 20:55:52 +02:00
2019-10-12 20:05:54 +03:00
2019-09-07 21:18:13 +03:00

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Half-Sync/Half-Async half-sync-half-async /patterns/half-sync-half-async/ Concurrency
Java
Difficulty-Intermediate

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.

Half-Sync/Half-Async 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.

Real world examples

Credits