+str #16610 minor fixes

This commit is contained in:
Gilad Hoch 2016-01-20 19:29:50 +02:00
parent fde0c11fff
commit 7e488001cc
3 changed files with 9 additions and 5 deletions

View file

@ -478,6 +478,9 @@ private[akka] final case class Conflate[In, Out](seed: In ⇒ Out, aggregate: (O
override def restart(): Conflate[In, Out] = copy()
}
/**
* INTERNAL API
*/
private[akka] final case class Batch[In, Out](max: Long, costFn: In Long, seed: In Out, aggregate: (Out, In) Out)
extends GraphStage[FlowShape[In, Out]] {