1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-26 06:56:04 +03:00
go-patterns/concurrency/parallelism.md
2020-08-18 09:22:50 +08:00

284 B

Parallelism Pattern

Parallelism allows multiple "jobs" or tasks to be run concurrently and asynchronously.

Implementation and Example

An example showing implementation and usage can be found in parallelism.go.