From ce288860afac8b0f0d76cc5ab626eb69921626da Mon Sep 17 00:00:00 2001 From: Anthony Atkinson Date: Sun, 4 Sep 2016 13:36:54 -0400 Subject: [PATCH] Bounded parallelism markdown. --- concurrency/bounded_parallelism.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 concurrency/bounded_parallelism.md diff --git a/concurrency/bounded_parallelism.md b/concurrency/bounded_parallelism.md new file mode 100644 index 0000000..8f1429c --- /dev/null +++ b/concurrency/bounded_parallelism.md @@ -0,0 +1,7 @@ +# Bounded Parallelism Pattern + +[Bounded parallelism](https://blog.golang.org/pipelines#TOC_9.) is similar to [parallelism](parallelism.md), but allows limits to be placed on allocation. + +# Implementation and Example + +An example showing implementation and usage can be found in [bounded_parallelism.go](bounded_parallelism.go). \ No newline at end of file