-str #16393 removes timerTransform mentions from scaladocs

This commit is contained in:
Konrad 'ktoso' Malawski 2014-11-27 10:55:40 +01:00
parent 3cc47984aa
commit e75c2305e7
5 changed files with 4 additions and 8 deletions

View file

@ -389,8 +389,6 @@ class Source[+Out](delegate: scaladsl.Source[Out]) {
* Generic transformation of a stream with a custom processing [[akka.stream.stage.Stage]].
* This operator makes it possible to extend the `Flow` API when there is no specialized
* operator that performs the transformation.
*
* Note that you can use [[#timerTransform]] if you need support for scheduled events in the transformer.
*/
def transform[U](name: String, mkStage: japi.Creator[Stage[Out, U]]): javadsl.Source[U] =
new Source(delegate.transform(name, () mkStage.create()))