Removing unused code in ReflectiveAccess, fixing a performance-related issue in LocalDeployer and switched back to non-systemServices in the LocalActorRefProviderSpec

This commit is contained in:
Viktor Klang 2011-11-04 00:39:02 +01:00
parent a044e41008
commit a75310a181
4 changed files with 5 additions and 121 deletions

View file

@ -65,7 +65,7 @@ import akka.AkkaApplication
*/
class Dispatcher(
_app: AkkaApplication,
_name: String,
val name: String,
val throughput: Int,
val throughputDeadlineTime: Int,
val mailboxType: MailboxType,
@ -73,8 +73,6 @@ class Dispatcher(
val timeoutMs: Long)
extends MessageDispatcher(_app) {
val name = "akka:event-driven:dispatcher:" + _name
protected[akka] val executorServiceFactory = executorServiceFactoryProvider.createExecutorServiceFactory(name)
protected[akka] val executorService = new AtomicReference[ExecutorService](new LazyExecutorServiceWrapper(executorServiceFactory.createExecutorService))