=str fixes wrong / missing cross references in scaladoc
This commit is contained in:
parent
ce2d666c06
commit
d1e5dbb8bb
2 changed files with 4 additions and 1 deletions
|
|
@ -799,6 +799,8 @@ final class Flow[-In, +Out, +Mat](delegate: scaladsl.Flow[In, Out, Mat]) extends
|
|||
* '''Completes when''' upstream completes
|
||||
*
|
||||
* '''Cancels when''' downstream cancels and substreams cancel
|
||||
*
|
||||
* See also [[Flow.splitAfter]].
|
||||
*/
|
||||
def splitWhen(p: function.Predicate[Out]): javadsl.Flow[In, Source[Out, Unit], Mat] =
|
||||
new Flow(delegate.splitWhen(p.test).map(_.asJava))
|
||||
|
|
|
|||
|
|
@ -957,6 +957,7 @@ trait FlowOps[+Out, +Mat] {
|
|||
*
|
||||
* '''Cancels when''' downstream cancels and substreams cancel
|
||||
*
|
||||
* See also [[FlowOps.splitAfter]].
|
||||
*/
|
||||
def splitWhen[U >: Out](p: Out ⇒ Boolean): Repr[Source[U, Unit], Mat] =
|
||||
deprecatedAndThen(Split.when(p.asInstanceOf[Any ⇒ Boolean]))
|
||||
|
|
@ -991,7 +992,7 @@ trait FlowOps[+Out, +Mat] {
|
|||
*
|
||||
* '''Cancels when''' downstream cancels and substreams cancel
|
||||
*
|
||||
* See also [[FlowOps.splitAfter]].
|
||||
* See also [[FlowOps.splitWhen]].
|
||||
*/
|
||||
def splitAfter[U >: Out](p: Out ⇒ Boolean): Repr[Source[U, Unit], Mat] =
|
||||
deprecatedAndThen(Split.after(p.asInstanceOf[Any ⇒ Boolean]))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue