From 5d1bea12b4e20fdfe0e0d974643cff3dc64ecadb Mon Sep 17 00:00:00 2001 From: Andrei Arlou Date: Mon, 4 Apr 2022 16:46:12 +0300 Subject: [PATCH] Use apidoc directive in stream/stream-parallelism.md (#22904) (#31301) --- akka-docs/src/main/paradox/stream/stream-parallelism.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/stream/stream-parallelism.md b/akka-docs/src/main/paradox/stream/stream-parallelism.md index 5f377f3c02..d2f611c705 100644 --- a/akka-docs/src/main/paradox/stream/stream-parallelism.md +++ b/akka-docs/src/main/paradox/stream/stream-parallelism.md @@ -84,7 +84,7 @@ it is easy to add a third frying pan with Patrik's method, but Roland cannot add since that would require a third processing step, which is not practically possible in the case of frying pancakes. One drawback of the example code above is it does not preserve the ordering of pancakes. This might be a problem -if children like to track their "own" pancakes. In those cases the `Balance` and `Merge` operators should be replaced +if children like to track their "own" pancakes. In those cases the @apidoc[akka.stream.*.Balance$] and @apidoc[akka.stream.*.Merge$] operators should be replaced by round-robin balancing and merging operators which put in and take out pancakes in a strict order. A more detailed example of creating a worker pool can be found in the cookbook: @ref:[Balancing jobs to a fixed pool of workers](stream-cookbook.md#cookbook-balance)