Go to file
Augusto Dwenger J. 92b4db36a6 feat: Implement the tutorial ThreadPool version
This commit includes the version of the ThreadPool from the official
rust book [1] with a small improvment regarding the pool creation. This
version does not panic if it fails to create the pool it will return a
Result with a possible ThreadPoolCreatError. Everything else is equal to
the tutorial implementation.

[1]
https://doc.rust-lang.org/book/ch20-00-final-project-a-web-server.html
2021-01-08 11:49:36 +01:00
src feat: Implement the tutorial ThreadPool version 2021-01-08 11:49:36 +01:00
.gitignore Init project 2021-01-07 11:30:11 +01:00
Cargo.toml Init project 2021-01-07 11:30:11 +01:00
LICENSE Init project 2021-01-07 11:30:11 +01:00
README.md Init project 2021-01-07 11:30:11 +01:00

README.md

poolth

Own implementation of the ThreadPool from the Final Project: Building a Multithreaded Web Server exercise.