com.uwyn.rife.continuations
Class ContinuationContext

java.lang.Object
  extended by com.uwyn.rife.continuations.ContinuationContext
All Implemented Interfaces:
Cloneable

public class ContinuationContext
extends Object
implements Cloneable


Method Summary
 Object clone()
           
static ContinuationContext createInstance(ContinuableObject initialContinuable)
           
 Object getCallAnswer()
           
static ContinuationContext getContext()
           
 ContinuableObject getContinuable()
           
 String getId()
           
 int getLabel()
           
 ContinuationStack getLocalStack()
           
 ContinuationStack getLocalVars()
           
 void remove()
           
static void setContext(ContinuationContext context)
           
 void setLabel(int label)
           
 void setShouldClone(boolean shouldClone)
           
 boolean shouldClone()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getContext

public static ContinuationContext getContext()

createInstance

public static ContinuationContext createInstance(ContinuableObject initialContinuable)

setContext

public static void setContext(ContinuationContext context)

remove

public void remove()

getCallAnswer

public Object getCallAnswer()

setLabel

public void setLabel(int label)

getLabel

public int getLabel()

getLocalVars

public ContinuationStack getLocalVars()

getLocalStack

public ContinuationStack getLocalStack()

getId

public String getId()

getContinuable

public ContinuableObject getContinuable()

clone

public Object clone()
             throws CloneNotSupportedException
Overrides:
clone in class Object
Throws:
CloneNotSupportedException

shouldClone

public boolean shouldClone()

setShouldClone

public void setShouldClone(boolean shouldClone)

RIFE Project Page