Upgraded plugin to 2.0.3, nightly to RC8 (bug fixes) (#27468)

This commit is contained in:
Helena Edelson 2019-08-09 09:40:52 -07:00 committed by GitHub
parent fb910a2b64
commit 2933de522b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@ import language.higherKinds
* INTERNAL API
*/
@InternalApi private[akka] object SubFlowImpl {
trait MergeBack[In, F[+ _]] {
trait MergeBack[In, F[+_]] {
def apply[T](f: Flow[In, T, NotUsed], breadth: Int): F[T]
}
}
@ -23,7 +23,7 @@ import language.higherKinds
/**
* INTERNAL API
*/
@InternalApi private[akka] class SubFlowImpl[In, Out, Mat, F[+ _], C](
@InternalApi private[akka] class SubFlowImpl[In, Out, Mat, F[+_], C](
val subFlow: Flow[In, Out, NotUsed],
mergeBackFunction: SubFlowImpl.MergeBack[In, F],
finishFunction: Sink[In, NotUsed] => C)