Use apidoc directive in stream/stream-parallelism.md (#22904) (#31301)

This commit is contained in:
Andrei Arlou 2022-04-04 16:46:12 +03:00 committed by GitHub
parent 9ac594e637
commit 5d1bea12b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)