Docs: link to object API docs (#29195)

This commit is contained in:
Enno 2020-06-26 09:07:01 +02:00 committed by GitHub
parent 09201bf65c
commit 4947c07385
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 6 deletions

View file

@ -14,7 +14,8 @@ Stream the values from a Java 8 `Stream`, requesting the next value when there i
Stream the values from a Java 8 `Stream`, requesting the next value when there is demand. The iterator will be created anew
for each materialization, which is the reason the @scala[`method`] @java[`factory`] takes a @scala[`function`] @java[`Creator`] rather than an `Stream` directly.
You can use [[Source.async]] to create asynchronous boundaries between synchronous java stream and the rest of flow.
You can use `Source.async` to create asynchronous boundaries between synchronous java stream and the rest of flow.
## Example
Scala