Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)