pjfanning commented on code in PR #1443: URL: https://github.com/apache/pekko/pull/1443#discussion_r1728951093
########## stream/src/main/scala/org/apache/pekko/stream/scaladsl/FlowWithContextOps.scala: ########## @@ -88,6 +88,20 @@ trait FlowWithContextOps[+Out, +Ctx, +Mat] { def viaMat[Out2, Ctx2, Mat2, Mat3](flow: Graph[FlowShape[(Out, Ctx), (Out2, Ctx2)], Mat2])( combine: (Mat, Mat2) => Mat3): ReprMat[Out2, Ctx2, Mat3] + /** + * Data variant of [[pekko.stream.scaladsl.FlowOps.alsoTo]] + * + * @see [[pekko.stream.scaladsl.FlowOps.alsoTo]] + */ + def alsoTo(that: Graph[SinkShape[Out], _]): Repr[Out, Ctx] Review Comment: Can you add `@since 1.1.0` on this and other new methods? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org