Adding ScalaDocs for FlowOps.async #21137

This commit is contained in:
Adam Warski 2016-08-08 07:11:59 -07:00 committed by Johan Andrén
parent f150b23c59
commit 033516b188

View file

@ -1825,6 +1825,14 @@ trait FlowOps[+Out, +Mat] {
def named(name: String): Repr[Out]
/**
* Put an asynchronous boundary around this `Flow`.
*
* If this is a `SubFlow` (created e.g. by `groupBy`), this creates an
* asynchronous boundary around each materialized sub-flow, not the
* super-flow. That way, the super-flow will communicate with sub-flows
* asynchronously.
*/
def async: Repr[Out]
/** INTERNAL API */