Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kymmt90/hyuki-design-pattern-multithread-in-rust
A rewrite of "増補改訂版 Java言語で学ぶデザインパターン入門 マルチスレッド編" in Rust.
https://github.com/kymmt90/hyuki-design-pattern-multithread-in-rust
multithreading rust
Last synced: 9 days ago
JSON representation
A rewrite of "増補改訂版 Java言語で学ぶデザインパターン入門 マルチスレッド編" in Rust.
- Host: GitHub
- URL: https://github.com/kymmt90/hyuki-design-pattern-multithread-in-rust
- Owner: kymmt90
- Created: 2024-09-22T04:45:11.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T03:20:13.000Z (3 months ago)
- Last Synced: 2024-12-08T22:31:42.824Z (15 days ago)
- Topics: multithreading, rust
- Language: Rust
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hyuki-design-pattern-multithread-in-rust
This repository is a rewrite of ["増補改訂版 Java言語で学ぶデザインパターン入門 マルチスレッド編"](https://www.hyuki.com/dp/dp2) (結城浩, 2006) in Rust.
## Table of contents
- [Single Threaded Execution](./single-threaded-execution)
- [Immutable](./immutable)
- [Guarded Suspension](./guarded-suspension)
- [Balking](./balking)
- [Producer-Consumer](./producer-consumer)
- [Read-Write Lock](./read-write-lock)
- [Thread-Per-Message](./thread-per-message)
- [Worker Thread](./worker-thread)
- [Future](./future)
- [Two-Phase Termination](./two-phase-termination)
- [Thread-Specific Storage](./thread-specific-storage)
- [Active Object](./active-object)