New materializer and layout

This commit is contained in:
Endre Sándor Varga 2016-07-27 13:29:23 +02:00 committed by Endre Sándor Varga
parent 1989ef481d
commit ba63c7af8d
60 changed files with 4420 additions and 3181 deletions

View file

@ -57,7 +57,7 @@ object ActorMaterializer {
val haveShutDown = new AtomicBoolean(false)
val system = actorSystemOf(context)
new ActorMaterializerImpl(
new PhasedFusingActorMaterializer(
system,
materializerSettings,
system.dispatchers,
@ -86,7 +86,7 @@ object ActorMaterializer {
private[akka] def systemMaterializer(materializerSettings: ActorMaterializerSettings, namePrefix: String,
system: ExtendedActorSystem): ActorMaterializer = {
val haveShutDown = new AtomicBoolean(false)
new ActorMaterializerImpl(
new PhasedFusingActorMaterializer(
system,
materializerSettings,
system.dispatchers,