Tag

proactor pattern

0 views collected around this technical thread.

Top Architect
Top Architect
Apr 19, 2021 · Backend Development

Thread Models and Reactor/Proactor Patterns in Server Architecture

This article explains server thread models—including traditional blocking I/O, the Reactor pattern with its single‑thread, multi‑thread, and master‑slave variants, and the asynchronous Proactor model—detailing their mechanisms, advantages, disadvantages, and typical use cases in backend development.

Reactor PatternThread modelasynchronous I/O
0 likes · 12 min read
Thread Models and Reactor/Proactor Patterns in Server Architecture
Xiaokun's Architecture Exploration Notes
Xiaokun's Architecture Exploration Notes
Apr 10, 2020 · Backend Development

Mastering Event‑Driven IO: Reactor vs. Proactor Patterns in Java

This article explains the design of event‑driven architectures for high‑performance web services, compares the Reactor (synchronous) and Proactor (asynchronous) models, and provides Java‑style pseudocode for their core components, handlers, and event loops.

Java NIOReactor Patternasynchronous io
0 likes · 20 min read
Mastering Event‑Driven IO: Reactor vs. Proactor Patterns in Java