All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.dispatch.EventLoopExecutorConfigurator.scala Maven / Gradle / Ivy

The newest version!
package akka.dispatch

import com.typesafe.config.Config
import java.util.concurrent.ExecutorService

class EventLoopExecutorConfigurator(config: Config, prerequisites: DispatcherPrerequisites) extends ExecutorServiceConfigurator(config, prerequisites) {
  def createExecutorServiceFactory(id: String): ExecutorServiceFactory =
    new ExecutorServiceFactory {
      def createExecutorService: ExecutorService = {
        new EventLoopExecutor
      }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy