1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-21 20:46:08 +03:00
go-patterns/concurrency/parallelism.md
2016-09-04 13:36:39 -04:00

278 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.