Packages

  • package root
    Definition Classes
    root
  • package akka
    Definition Classes
    root
  • package contrib
    Definition Classes
    akka
  • package pattern
    Definition Classes
    contrib
  • object WorkList

    Provides the utility methods and constructors to the WorkList class.

    Provides the utility methods and constructors to the WorkList class.

    Definition Classes
    pattern
    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) Feel free to copy

  • Entry

class Entry[T] extends AnyRef

Singly linked list entry implementation for WorkList.

Source
Aggregator.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Entry
  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 Entry(ref: Option[T], permanent: Boolean)

    ref

    The item reference, None for head entry

    permanent

    If the entry is to be kept after processing

Value Members

  1. var isDeleted: Boolean
  2. var next: Entry[T]
  3. val permanent: Boolean
  4. val ref: Option[T]