|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ContinuationContext | |
|---|---|
| com.uwyn.rife.continuations | Provides continuations functionalities natively in Java. |
| com.uwyn.rife.continuations.exceptions | Provides exception classes for the continuation functionalities. |
| Uses of ContinuationContext in com.uwyn.rife.continuations |
|---|
| Methods in com.uwyn.rife.continuations that return ContinuationContext | |
|---|---|
ContinuationContext |
ContinuationContext.clone()
[PRIVATE AND UNSUPPORTED] Creates a cloned instance of this continuation context, this clone is not a perfect copy but is intended to be a child continuation and all context data is setup for that. |
static ContinuationContext |
ContinuationContext.createOrResetContext(Object executingInstance)
[PRIVATE AND UNSUPPORTED] Creates a new continuation context or resets its expiration time. |
static ContinuationContext |
ContinuationContext.getActiveContext()
Retrieves the currently active continuation for the executing thread. |
ContinuationContext<T> |
ContinuationManager.getContext(String id)
Retrieves a ContinuationContext instance from this continuation
manager. |
static ContinuationContext |
ContinuationContext.getLastContext()
Retrieves the last active continuation for the executing thread. |
ContinuationContext |
ContinuationContext.getParentContext()
Retrieves the parent ContinuationContext of this
ContinuationContext instance. |
ContinuationContext<T> |
ContinuationManager.resumeContext(String id)
Creates a new ContinuationContext from an existing one so that
the execution can be resumed. |
| Methods in com.uwyn.rife.continuations with parameters of type ContinuationContext | |
|---|---|
void |
ContinuationManager.addContext(ContinuationContext<T> context)
Adds a particular ContinuationContext to this manager. |
boolean |
ContinuationManager.isExpired(ContinuationContext<T> context)
Checks if a particular continuation context is expired. |
static void |
ContinuationContext.setActiveContext(ContinuationContext context)
Replaces the active continuation context for the executing thread. |
| Uses of ContinuationContext in com.uwyn.rife.continuations.exceptions |
|---|
| Methods in com.uwyn.rife.continuations.exceptions that return ContinuationContext | |
|---|---|
ContinuationContext |
AnswerException.getContext()
Retrieves the context of this answer continuation. |
ContinuationContext |
StepBackException.getContext()
Retrieves the context of this stepback continuation. |
ContinuationContext |
PauseException.getContext()
Retrieves the context of this pause continuation. |
ContinuationContext |
CallException.getContext()
Retrieves the context of this call continuation. |
| Constructors in com.uwyn.rife.continuations.exceptions with parameters of type ContinuationContext | |
|---|---|
AnswerException(ContinuationContext context,
Object answer)
[PRIVATE AND UNSUPPORTED] Instantiates a new answer exception. |
|
CallException(ContinuationContext context,
Object target)
[PRIVATE AND UNSUPPORTED] Instantiates a new call exception. |
|
PauseException(ContinuationContext context)
[PRIVATE AND UNSUPPORTED] Instantiates a new pause exception. |
|
StepBackException(ContinuationContext context)
[PRIVATE AND UNSUPPORTED] Instantiates a new stepback exception. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||