Operator docs for Source.combine (#28195)

This commit is contained in:
Johan Andrén 2019-11-22 14:42:36 +01:00 committed by GitHub
parent 61bd3d42b6
commit d385c1098a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 174 additions and 22 deletions

View file

@ -630,7 +630,7 @@ object Source {
scaladsl.Source.setup((mat, attr) => factory(mat, attr).asScala).mapMaterializedValue(_.toJava).asJava
/**
* Combines several sources with fan-in strategy like `Merge` or `Concat` and returns `Source`.
* Combines several sources with fan-in strategy like [[Merge]] or [[Concat]] into a single [[Source]].
*/
def combine[T, U](
first: Source[T, _ <: Any],