Additional tests for async boundaries and GroupBy #24676

This commit is contained in:
Johan Andrén 2018-05-03 13:24:51 +02:00 committed by GitHub
parent d08f31bcdb
commit dfd8d8aa81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 83 additions and 28 deletions

View file

@ -114,6 +114,9 @@ class SubFlow[In, Out, Mat](delegate: scaladsl.SubFlow[Out, Mat, scaladsl.Flow[I
* | +------+ +------+ |
* +----------------------------+
* }}}
*
* Note that attributes set on the returned graph, including async boundaries are now for the entire graph and not
* the `SubFlow`. for example `async` will not have any effect as the returned graph is the entire, closed graph.
*/
def to(sink: Graph[SinkShape[Out], _]): Sink[In, Mat] =
new Sink(delegate.to(sink))