akka.contrib.pattern
Class WorkList.Entry<T>

java.lang.Object
  extended by akka.contrib.pattern.WorkList.Entry<T>
Enclosing class:
WorkList<T>

public static class WorkList.Entry<T>
extends java.lang.Object

Singly linked list entry implementation for WorkList. param: ref The item reference, None for head entry param: permanent If the entry is to be kept after processing


Constructor Summary
WorkList.Entry(scala.Option<T> ref, boolean permanent)
           
 
Method Summary
 boolean isDeleted()
           
 WorkList.Entry<T> next()
           
 boolean permanent()
           
 scala.Option<T> ref()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WorkList.Entry

public WorkList.Entry(scala.Option<T> ref,
                      boolean permanent)
Method Detail

ref

public scala.Option<T> ref()

permanent

public boolean permanent()

next

public WorkList.Entry<T> next()

isDeleted

public boolean isDeleted()