H - The type of the handle.CompositeComponentHandle<H,REF>, ConfigurableLifeCycleComponentHandle<H,CTX>, ConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandle<H,CTX>, LifeCycleComponentHandle<H>, LifeCycleComponentHandle.LifeCycleAutomatonHandle<H>, ResumableHandle.ResumeAutomatonHandle<H>public interface ResumableHandle<H>
ResumableHandle interface defines those methods related to the
handle based resume life-cycle.
The handle reference requires the Resumable interface to be
implemented.
| Modifier and Type | Interface | Description |
|---|---|---|
static interface |
ResumableHandle.ResumeAutomatonHandle<H> |
The
ResumableHandle.ResumeAutomatonHandle interface defines those methods related
to the handle based resume life-cycle. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
hasResumable(H aHandle) |
Determines whether the handle reference is resumable by implementing the
Resumable interface. |
void |
resume(H aHandle) |
Resumes the component identified by the given handle.
|
default void |
resumeUnchecked(H aHandle) |
Resumes the component by calling
resume(Object) without you to
require catching an ResumeException. |
boolean hasResumable(H aHandle) throws UnknownHandleRuntimeException
Resumable interface.aHandle - The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException - in case the handle is unknown.void resume(H aHandle) throws ResumeException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegalHandleStateChangeRuntimeException
aHandle - The handle identifying the component.ResumeException - in case resuming fails.UnknownHandleRuntimeException - in case the given handle is
unknown.UnsupportedHandleOperationRuntimeException - in case the reference
of the handle does not support the requested operation.IllegalHandleStateChangeRuntimeException - Thrown in case a state
change is not possible due to the current state the referenced
component is in.default void resumeUnchecked(H aHandle)
resume(Object) without you to
require catching an ResumeException.aHandle - The handle identifying the component.org.refcodes.exception.HiddenException - encapsulates the cause and is thrown upon
encountering a ResumeException exceptionCopyright © 2018. All rights reserved.