We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb539d7 commit 06b66c3Copy full SHA for 06b66c3
concurrency/README.md
@@ -46,7 +46,7 @@ go fn(a, b, c)
46
47
1. It should be possible to stop running goroutines, e.g. on service shutdown or HTTP timeout. Use one of next for cancellation:
48
- `context.Context`(Context is cancelled or the deadline is exceeded. Preferable.)
49
- - stop channel(hard to use with other APIs, e.g. with some DB ORM or HTTP clients)
+ - stop channel(kinda legacy solution and hard to use with other APIs, e.g. with some DB ORM or HTTP clients)
50
51
Also write [context aware code](https://www.storj.io/blog/production-concurrency).
52
0 commit comments