From 53cda6087295201b07b099fd34cfa41e6d6954ab Mon Sep 17 00:00:00 2001 From: mehdy Date: Wed, 7 Sep 2016 11:18:35 +0430 Subject: [PATCH 1/2] concurrency/generator: added generator pattern added the generator pattern and implementation using channel --- concurrency/generator.go | 24 ++++++++++++++++++++++++ concurrency/generator.md | 7 +++++++ 2 files changed, 31 insertions(+) create mode 100644 concurrency/generator.go create mode 100644 concurrency/generator.md diff --git a/concurrency/generator.go b/concurrency/generator.go new file mode 100644 index 0000000..6e21bc4 --- /dev/null +++ b/concurrency/generator.go @@ -0,0 +1,24 @@ +package generator + +func Range(start int, end int, step int) chan int { + c := make(chan int) + + go func() { + result := start + for result < end { + c <- result + result = result + step + } + + close(c) + }() + + return c +} + +func main() { + // print the numbers from 3 through 47 with a step size of 2 + for i := range Range(3, 47, 2) { + println(i) + } +} diff --git a/concurrency/generator.md b/concurrency/generator.md new file mode 100644 index 0000000..c80e015 --- /dev/null +++ b/concurrency/generator.md @@ -0,0 +1,7 @@ +# Generator Pattern + +[Generators](https://en.wikipedia.org/wiki/Generator_(computer_programming)) yields a sequence of values one at a time + +# Implementation and Example + +You can find the implementation and usage in [generator.go](generator.go) From 7c9a3e528e7be0d3e2c598c6771686e1ae7982fd Mon Sep 17 00:00:00 2001 From: mehdy Date: Thu, 8 Sep 2016 22:10:25 +0430 Subject: [PATCH 2/2] removed TODO from main readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fb281e..5c4f07a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ __Concurrency Patterns__: | [Bounded Parallelism](concurrency/bounded_parallelism.md) | Completes large number of independent tasks with resource limits | | TODO: [Broadcast](concurrency/broadcast.md) | Transfers a message to all recipients simultaneously | | TODO: [Coroutines](concurrency/coroutine.md) | Subroutines that allow suspending and resuming execution at certain locations | -| TODO: [Generators](concurrency/generator.md) | Yields a sequence of values one at a time | +| [Generators](concurrency/generator.md) | Yields a sequence of values one at a time | | TODO: [Reactor](concurrency/reactor.md) | Demultiplexes service requests delivered concurrently to a service handler and dispatches them syncronously to the associated request handlers | | [Parallelism](concurrency/parallelism.md) | Completes large number of independent tasks | | TODO: [Producer Consumer](concurrency/producer_consumer.md) | Separates tasks from task executions |