summaryrefslogblamecommitdiff
path: root/src/library/scala/concurrent/SyncVar.scala
blob: b0a76d73b49b5349af9cdcaf11a062e863171036 (plain) (tree)
1
2
3
4
5
6
7
8

                                                                          
                                                                          


                                                                          

                                                                          


       

                         
 
                  
 
                                         
                           
 



                           
 
                                


                     
   
 
                                     
              
   
 
                            
                     
   
 
 
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2006, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.concurrent;


class SyncVar[a] {

  private var isDefined: Boolean = false;
  private var value: a = _;

  def get = synchronized {
    if (!isDefined) wait();
    value
  }

  def set(x: a) = synchronized {
    value = x;
    isDefined = true;
    notifyAll()
  }

  def isSet: Boolean = synchronized {
    isDefined;
  }

  def unset = synchronized {
    isDefined = false
  }

}