scala.concurrent

SyncVar

class SyncVar[A] extends AnyRef

The class SyncVar ...

Inherits

  1. AnyRef
  2. Any

Value Members

  1. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  2. def get(timeout: Long): Option[A]

  3. def get: A

  4. def hashCode(): Int

    Returns a hash code value for the object

  5. def isSet: Boolean

  6. def put(x: A): Unit

  7. def set(x: A): Unit

  8. def take(): A

  9. def toString(): String

    Returns a string representation of the object

  10. def unset(): Unit

Instance constructors

  1. new SyncVar()