scala.concurrent.ThreadRunner.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-library Show documentation
Show all versions of scala-library Show documentation
Standard library for the Scala Programming Language
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2003-2013, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala.concurrent
import java.lang.Thread
import scala.language.implicitConversions
/** The `ThreadRunner` trait...
*
* @author Philipp Haller
*/
@deprecated("Use `ExecutionContext` instead.", "2.10.0")
class ThreadRunner extends FutureTaskRunner {
type Task[T] = () => T
type Future[T] = () => T
implicit def functionAsTask[S](fun: () => S): Task[S] = fun
implicit def futureAsFunction[S](x: Future[S]): () => S = x
/* If expression computed successfully return it in `Right`,
* otherwise return exception in `Left`.
*/
private def tryCatch[A](body: => A): Either[Exception, A] =
try Right(body) catch {
case ex: Exception => Left(ex)
}
def execute[S](task: Task[S]) {
val runnable = new Runnable {
def run() { tryCatch(task()) }
}
(new Thread(runnable)).start()
}
def submit[S](task: Task[S]): Future[S] = {
val result = new SyncVar[Either[Exception, S]]
val runnable = new Runnable {
def run() { result set tryCatch(task()) }
}
(new Thread(runnable)).start()
() => result.get.fold[S](throw _, identity _)
}
@deprecated("Use `blocking` instead.", "2.10.0")
def managedBlock(blocker: ManagedBlocker) {
blocker.block()
}
def shutdown() {
// do nothing
}
}