This commit is contained in:
Carl Fredrik Samson
2020-01-25 15:39:45 +01:00
parent e17a4beb8b
commit fba6f649f1
10 changed files with 241 additions and 12 deletions

1
src/0_0_Introduction.md Normal file
View File

@@ -0,0 +1 @@
# Introduction

View File

@@ -0,0 +1,18 @@
# Some background information
Before we start implementing our `Futures`, we'll go through some background
information that will help demystify some of the concepts we encounter.
## Concurrency in general
If you find the concepts of concurrency and async programming confusing in
general, I'd recommend that you spend a little time exploring some of the
basic concepts first. Learning `Futures` in Rust is not the best introduction
to the subject.
I have spent quite a bit of time digging into these subjects myself, and I'll
point you to some of thos sources
**The absolute minimum**
[Async Basics - The Difference Between Concurrency And Parallelism]()

View File

@@ -1,3 +1,4 @@
# Summary
- [Chapter 1](./chapter_1.md)
- [Introduction](./0_0_Introduction.md)
- [Some background information](./0_1_BackgroundInformation.md)

View File

@@ -1 +0,0 @@
# Chapter 1