#18948 add eagerComplete parameter to FlowOps.merge

This commit is contained in:
Roland Ferenczy 2015-11-18 16:09:05 +01:00 committed by Roland Kuhn
parent e6b8c86315
commit 144875a665
8 changed files with 67 additions and 40 deletions

View file

@ -68,7 +68,7 @@ private object PoolConductor {
GraphDSL.create() { implicit b
import GraphDSL.Implicits._
val retryMerge = b.add(MergePreferred[RequestContext](1, eagerClose = true))
val retryMerge = b.add(MergePreferred[RequestContext](1, eagerComplete = true))
val slotSelector = b.add(new SlotSelector(slotCount, pipeliningLimit, log))
val route = b.add(new Route(slotCount))
val retrySplit = b.add(Broadcast[RawSlotEvent](2))