https://github.com/felipeaz/go-context
Exploring go context
https://github.com/felipeaz/go-context
golang
Last synced: 3 months ago
JSON representation
Exploring go context
- Host: GitHub
- URL: https://github.com/felipeaz/go-context
- Owner: felipeaz
- Created: 2023-01-28T23:25:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-24T10:03:26.000Z (almost 2 years ago)
- Last Synced: 2025-01-07T05:21:57.398Z (4 months ago)
- Topics: golang
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-context
Exploring go context usage in Go applicationWhen I started writting go codes I didn't know why people use context, why is it used for?
Context handles information about the "context" it is running to, but that's just one thing about it. We can define timeouts, set values within it and send it downstream creating a relation between the downstream calls.