Skip to content

Commit 297d9f1

Browse files
committed
Begin Glossary
1 parent 95a2f8e commit 297d9f1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/src/glossary.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Glossary
2+
3+
### blocking
4+
5+
"blocked" generally refers to conditions that keep a task from doing its work. For example, it might need data to be sent by a client before continuing. When tasks becomes blocked, usually, other tasks are scheduled.
6+
7+
Sometimes you hear that you should never call "blocking functions" in an async context. What this refers to is functions that block the current thread and do not yield control back. This keeps the executor from using this thread to schedule another task.

0 commit comments

Comments
 (0)