Skip to content

Commit 804615c

Browse files
author
Anthony Atkinson
committed
Some links are .go and not .md
1 parent 64a6757 commit 804615c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ __Concurrency Patterns__:
6464
| Pattern | Description |
6565
|:-------:| ----------- |
6666
| TODO: [N-Barrier](concurrency/barrier.md) | Prevents a process from proceeding until all N processes reach to the barrier |
67-
| [Bounded Parallelism](concurrency/bounded_parallelism.md) | Completes large number of indenpendent tasks with resource limits |
67+
| [Bounded Parallelism](concurrency/bounded_parallelism.go) | Completes large number of indenpendent tasks with resource limits |
6868
| TODO: [Broadcast](concurrency/broadcast.md) | Transfers a message to all recipients simultaneously |
6969
| TODO: [Coroutines](concurrency/coroutine.md) | Subroutines that allow suspending and resuming execution at certain locations |
7070
| TODO: [Generators](concurrency/generator.md) | Yields a sequence of values one at a time |
7171
| TODO: [Reactor](concurrency/reactor.md) | Demultiplexes service requests delivered concurrently to a service handler and dispatches them syncronously to the associated request handlers |
72-
| [Parallelism](concurrency/parallelism.md) | Completes large number of indenpendent tasks |
72+
| [Parallelism](concurrency/parallelism.go) | Completes large number of indenpendent tasks |
7373
| TODO: [Producer Consumer](concurrency/producer_consumer.md) | Separates tasks from task executions |
7474
| TODO: [Scheduler](concurrency/scheduler.md) | Orchestrates steps to be performed as part of a task |
7575

@@ -88,7 +88,7 @@ __Stability Patterns__:
8888
| Pattern | Description |
8989
|:-------:| ----------- |
9090
| TODO: [Bulkheads](stability/bulkhead.md) | Enforces a principle of failure containment (i.e. prevents cascading failures) |
91-
| [Circuit-Breaker](stability/circuit_breaker.go) | Stops the flow of the requests when requests are likely to fail |
91+
| [Circuit-Breaker](stability/circuitbreaker.go) | Stops the flow of the requests when requests are likely to fail |
9292
| TODO: [Deadline](stability/deadline.md) | Allows clients to stop waiting for a response once the probability of response becomes low (e.g. after waiting 10 seconds for a page refresh)|
9393
| TODO: [Fail-Fast](stability/fail_fast.md) | Checks the availability of required resources at the start of a request and fails if the requirements are not satisfied |
9494
| TODO: [Handshaking](stability/handshaking.md) | Asks a component if it can take any more load, if it can't the request is declined |

0 commit comments

Comments
 (0)