๐Ÿ“ฆ rust-lang / async-book

๐Ÿ“„ timers-signals.md ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17# Timers and Signal handling

## Time and Timers

- runtime integration, don't use thread::sleep, etc.
- std Instant and Duration
- sleep
- interval
- timeout
  - special future vs select/race

## Signal handling

- what is signal handling and why is it an async issue?
- very OS specific
- see Tokio docs