1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-21 20:46:08 +03:00

README: remove the scheduler pattern

This commit is contained in:
Tamer Tas 2017-01-31 17:45:23 +03:00
parent a80af1998f
commit c851ce7037
2 changed files with 0 additions and 2 deletions

View File

@ -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 | ✘ | | [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 | ✔ | | [Parallelism](/concurrency/parallelism.md) | Completes large number of independent tasks | ✔ |
| [Producer Consumer](/concurrency/producer_consumer.md) | Separates tasks from task executions | ✘ | | [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 ## Messaging Patterns

View File

@ -40,7 +40,6 @@
* [Reactor](/concurrency/reactor.md) * [Reactor](/concurrency/reactor.md)
* [Parallelism](/concurrency/parallelism.md) * [Parallelism](/concurrency/parallelism.md)
* [Producer Consumer](/concurrency/producer_consumer.md) * [Producer Consumer](/concurrency/producer_consumer.md)
* [Scheduler](/concurrency/scheduler.md)
* [Messaging Patterns](/README.md#messaging-patterns) * [Messaging Patterns](/README.md#messaging-patterns)
* [Fan-In](/messaging/fan_in.md) * [Fan-In](/messaging/fan_in.md)
* [Fan-Out](/messaging/fan_out.md) * [Fan-Out](/messaging/fan_out.md)