From c851ce7037eed455f2707ac0e2e187c7c076bc51 Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Tue, 31 Jan 2017 17:45:23 +0300 Subject: [PATCH] README: remove the scheduler pattern --- README.md | 1 - SUMMARY.md | 1 - 2 files changed, 2 deletions(-) diff --git a/README.md b/README.md index 180eb75..bbde453 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,6 @@ A curated collection of idiomatic design & application patterns for Go language. | [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 | ✔ | | [Producer Consumer](/concurrency/producer_consumer.md) | Separates tasks from task executions | ✘ | -| [Scheduler](/concurrency/scheduler.md) | Orchestrates steps to be performed as part of a task | ✘ | ## Messaging Patterns diff --git a/SUMMARY.md b/SUMMARY.md index 86d2044..021d36b 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -40,7 +40,6 @@ * [Reactor](/concurrency/reactor.md) * [Parallelism](/concurrency/parallelism.md) * [Producer Consumer](/concurrency/producer_consumer.md) - * [Scheduler](/concurrency/scheduler.md) * [Messaging Patterns](/README.md#messaging-patterns) * [Fan-In](/messaging/fan_in.md) * [Fan-Out](/messaging/fan_out.md)