|
Play Framework/Scala example source code file (OrderedExecutionContext.scala)
The OrderedExecutionContext.scala Play Framework example source code
/*
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com>
*/
package play.core.j
import akka.actor.{ Actor, ActorSystem, Props }
import play.api.Logger
import play.mvc.Http
import scala.concurrent.ExecutionContext
/**
* Executes work in a fixed-sized pool of actors. If an Http.Context is associated
* with the current thread then that id will be used to dispatch work to the same
* actor every time, resulting in ordered execution of work for that context.
*
* The ExecutionContext preserves the execution behaviour of F.Promise from Play.
*/
class OrderedExecutionContext(actorSystem: ActorSystem, size: Int) extends ExecutionContext {
private val actors = Array.fill(size)(actorSystem.actorOf(Props[OrderedExecutionContext.RunActor]))
def execute(runnable: Runnable) = {
val httpContext = Http.Context.current.get()
val id: Long = if (httpContext == null) 0L else httpContext.id()
val actor = actors((id % size).toInt)
actor ! runnable
}
def reportFailure(t: Throwable) = Logger.error("Failure in OrderedExecutionContext", t)
}
object OrderedExecutionContext {
/**
* Used by the OrderedExecutionContext to run work in an actor.
*/
class RunActor extends Actor {
def receive = {
case runnable: Runnable => runnable.run()
}
}
}
Other Play Framework source code examplesHere is a short list of links related to this Play Framework OrderedExecutionContext.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.