|
Akka/Scala example source code file (CallingThreadDispatcherModelSpec.scala)
The CallingThreadDispatcherModelSpec.scala Akka example source code/** * Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> */ package akka.testkit import java.util.concurrent.atomic.AtomicInteger import akka.actor.dispatch.ActorModelSpec import com.typesafe.config.Config import akka.dispatch.DispatcherPrerequisites import akka.dispatch.MessageDispatcher import akka.dispatch.MessageDispatcherConfigurator import akka.dispatch.UnboundedMailbox object CallingThreadDispatcherModelSpec { import ActorModelSpec._ val config = { """ boss { executor = thread-pool-executor type = PinnedDispatcher } """ + // use unique dispatcher id for each test, since MessageDispatcherInterceptor holds state (for (n ← 1 to 30) yield """ test-calling-thread-%s { type = "akka.testkit.CallingThreadDispatcherModelSpec$CallingThreadDispatcherInterceptorConfigurator" }""".format(n)).mkString } class CallingThreadDispatcherInterceptorConfigurator(config: Config, prerequisites: DispatcherPrerequisites) extends MessageDispatcherConfigurator(config, prerequisites) { private val instance: MessageDispatcher = new CallingThreadDispatcher(this) with MessageDispatcherInterceptor { override def id: String = config.getString("id") } override def dispatcher(): MessageDispatcher = instance } } @org.junit.runner.RunWith(classOf[org.scalatest.junit.JUnitRunner]) class CallingThreadDispatcherModelSpec extends ActorModelSpec(CallingThreadDispatcherModelSpec.config) { import ActorModelSpec._ val dispatcherCount = new AtomicInteger() override def interceptedDispatcher(): MessageDispatcherInterceptor = { // use new id for each test, since the MessageDispatcherInterceptor holds state system.dispatchers.lookup("test-calling-thread-" + dispatcherCount.incrementAndGet()).asInstanceOf[MessageDispatcherInterceptor] } override def dispatcherType = "Calling Thread Dispatcher" } Other Akka source code examplesHere is a short list of links related to this Akka CallingThreadDispatcherModelSpec.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.