scala.concurrent.SyncVar.scala Maven / Gradle / Ivy
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2003-2010, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala.concurrent
/** The class SyncVar ...
*
* @author Martin Odersky
* @version 1.0, 10/03/2003
*/
class SyncVar[A] {
private var isDefined: Boolean = false
private var value: A = _
private var exception: Option[Throwable] = None
def get = synchronized {
while (!isDefined) wait()
if (exception.isEmpty) value
else throw exception.get
}
def get(timeout: Long): Option[A] = synchronized {
if (!isDefined) {
try {
wait(timeout)
} catch {
case _: InterruptedException =>
}
}
if (exception.isEmpty) {
if (isDefined) Some(value) else None
} else
throw exception.get
}
def take() = synchronized {
try {
get
} finally {
unset()
}
}
def set(x: A) = synchronized {
value = x
isDefined = true
exception = None
notifyAll()
}
private def setException(e: Throwable) = synchronized {
exception = Some(e)
isDefined = true
notifyAll()
}
def put(x: A) = synchronized {
while (isDefined) wait()
set(x)
}
def isSet: Boolean = synchronized {
isDefined
}
def unset(): Unit = synchronized {
isDefined = false
notifyAll()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy