+str #15174 Add dispatcher setting to FlowMaterializer

* Verify dispatcher with custom default mailbox
This commit is contained in:
Patrik Nordwall 2014-05-13 17:17:33 +02:00
parent a1588e2e39
commit e9a2585050
46 changed files with 183 additions and 68 deletions

View file

@ -37,7 +37,8 @@ private[akka] abstract class MultiStreamOutputProcessor(_settings: MaterializerS
private var completed: Boolean = false
private var demands: Int = 0
val substream = context.watch(context.actorOf(IdentityProcessorImpl.props(settings)))
val substream = context.watch(context.actorOf(IdentityProcessorImpl.props(settings).
withDispatcher(context.props.dispatcher)))
val processor = new ActorProcessor[AnyRef, AnyRef](substream)
override def isClosed: Boolean = completed