Packages

c

scala.ref

ReferenceQueue

class ReferenceQueue[+T <: AnyRef] extends AnyRef

Source
ReferenceQueue.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReferenceQueue
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReferenceQueue()

Value Members

  1. def poll: Option[Reference[T]]
  2. def remove(timeout: Long): Option[Reference[T]]
  3. def remove: Option[Reference[T]]
  4. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    ReferenceQueue → AnyRef → Any