H - The type of the handle.CompositeComponentHandle<H,REF>, ConfigurableLifeCycleComponentHandle<H,CTX>, ConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandle<H,CTX>, LifeCycleComponentHandle<H>, LifeCycleComponentHandle.LifeCycleAutomatonHandle<H>, StoppableHandle.StopAutomatonHandle<H>public interface StoppableHandle<H>
StoppableHandle interface defines those methods related to the
handle based stop life-cycle.
The handle reference requires the Stoppable interface to be
implemented.
| Modifier and Type | Interface | Description |
|---|---|---|
static interface |
StoppableHandle.StopAutomatonHandle<H> |
The
StoppableHandle.StopAutomatonHandle interface defines those methods related
to the handle based stop life-cycle. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
hasStoppable(H aHandle) |
Determines whether the handle reference is stoppable by implementing the
Stoppable interface. |
void |
stop(H aHandle) |
Stops the component identified by the given handle.
|
default void |
stopUnchecked(H aHandle) |
Stops the component by calling
stop(Object) without you to
require catching an StopException. |
boolean hasStoppable(H aHandle) throws UnknownHandleRuntimeException
Stoppable interface.aHandle - The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException - in case the handle is unknown.void stop(H aHandle) throws StopException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegalHandleStateChangeRuntimeException
aHandle - The handle identifying the component.StopException - in case stopping 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 stopUnchecked(H aHandle)
stop(Object) without you to
require catching an StopException.aHandle - The handle identifying the component.org.refcodes.exception.HiddenException - encapsulates the cause and is thrown upon
encountering a StopException exceptionCopyright © 2018. All rights reserved.