Skip to content

Instantly share code, notes, and snippets.

@johanandren
Created October 14, 2016 06:35
Show Gist options
  • Save johanandren/d55d022bff39ab65b170d8478219604a to your computer and use it in GitHub Desktop.
Save johanandren/d55d022bff39ab65b170d8478219604a to your computer and use it in GitHub Desktop.
package streams
import akka.actor.ActorSystem
import akka.stream._
import akka.stream.scaladsl._
import com.typesafe.config.ConfigFactory
object StreamDispatchers extends App {
implicit val system = ActorSystem("dispatchers", ConfigFactory.parseString(
"""
another {
type = Dispatcher
executor = "thread-pool-executor"
thread-pool-executor {
fixed-pool-size = 1
}
}
yet-another {
type = Dispatcher
executor = "thread-pool-executor"
thread-pool-executor {
fixed-pool-size = 1
}
}
"""))
implicit val materializer = ActorMaterializer()
val source = Source(0 to 200)
.map { n => println("expected default: " + Thread.currentThread().getName); n }
.map { n => println("expected another: " + Thread.currentThread().getName); n }
.addAttributes(ActorAttributes.dispatcher("another"))
.map { n => println("expected yet-another: " + Thread.currentThread().getName); n }
.addAttributes(ActorAttributes.dispatcher("yet-another"))
.runForeach(n => println("expected default: " + Thread.currentThread().getName))
}
@johanandren
Copy link
Author

Sample output:

/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/bin/java -Xmx10g -Didea.launcher.port=7535 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA CE.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/lib/tools.jar:/Users/johan/Code/Playgrounds/akka-2.4-playground/target/scala-2.11/classes:/Users/johan/.ivy2/cache/com.sun.xml.bind/jaxb-impl/jars/jaxb-impl-2.2.6.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-testkit_2.11/jars/akka-testkit_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.10.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-slf4j_2.11/jars/akka-slf4j_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-remote_2.11/jars/akka-remote_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-protobuf_2.11/jars/akka-protobuf_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-http-spray-json-experimental_2.11/jars/akka-http-spray-json-experimental_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-cluster_2.11/jars/akka-cluster_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-cluster-tools_2.11/jars/akka-cluster-tools_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-camel_2.11/jars/akka-camel_2.11-2.4.8.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.10.jar:/Users/johan/.ivy2/cache/org.xerial.snappy/snappy-java/bundles/snappy-java-1.1.2.6.jar:/Users/johan/.ivy2/cache/org.slf4j/slf4j-api/jars/slf4j-api-1.7.21.jar:/Users/johan/.ivy2/cache/org.apache.kafka/kafka-clients/jars/kafka-clients-0.10.0.1.jar:/Users/johan/.ivy2/cache/net.jpountz.lz4/lz4/jars/lz4-1.3.0.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-stream-kafka_2.11/jars/akka-stream-kafka_2.11-0.11.jar:/Users/johan/.ivy2/cache/org.uncommons.maths/uncommons-maths/jars/uncommons-maths-1.2.2a.jar:/Users/johan/.ivy2/cache/org.scalatest/scalatest_2.11/bundles/scalatest_2.11-2.2.5.jar:/Users/johan/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.2.jar:/Users/johan/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/Users/johan/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/Users/johan/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.2.jar:/Users/johan/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/Users/johan/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/Users/johan/.ivy2/cache/org.apache.camel/camel-core/bundles/camel-core-2.13.4.jar:/Users/johan/.ivy2/cache/io.spray/spray-json_2.11/bundles/spray-json_2.11-1.3.2.jar:/Users/johan/.ivy2/cache/io.netty/netty/bundles/netty-3.10.6.Final.jar:/Users/johan/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/Users/johan/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/Users/johan/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/Users/johan/.ivy2/cache/com.rabbitmq/amqp-client/jars/amqp-client-3.6.1.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-stream-contrib-amqp_2.11/jars/akka-stream-contrib-amqp_2.11-0.3.jar:/Users/johan/.ivy2/cache/com.typesafe.akka/akka-stream-contrib_2.11/jars/akka-stream-contrib_2.11-0.3.jar:/Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain streams.Example
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-4
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected default: dispatchers-another-6
expected another: dispatchers-another-6
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected another: dispatchers-another-6
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3
expected yet-another: dispatchers-yet-another-5
expected default: dispatchers-akka.actor.default-dispatcher-3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment