H - The type of the handle.public interface StartableHandle<H>
StartableHandle interface defines those methods related to the
handle based start life-cycle.
The handle reference requires the Startable interface to be
implemented.
| Modifier and Type | Interface and Description |
|---|---|
static interface |
StartableHandle.StartAutomatonHandle<H>
The
StartableHandle.StartAutomatonHandle interface defines those methods related
to the handle based start life-cycle. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasStartable(H aHandle)
Determines whether the handle reference is startable by implementing the
Startable interface. |
void |
start(H aHandle)
Starts the component identified by the given handle.
|
default void |
startUnchecked(H aHandle)
Starts the component by calling
start(Object) without you to
require catching an StartException. |
boolean hasStartable(H aHandle) throws UnknownHandleRuntimeException
Startable interface.aHandle - The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException - in case the handle is unknown.void start(H aHandle) throws StartException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegaleHandleStateChangeRuntimeException
aHandle - The handle identifying the component.StartException - in case starting fails.UnknownHandleRuntimeException - in case the given handle is
unknown.UnsupportedHandleOperationRuntimeException - in case the reference
of the handle does not support the requested operation.IllegaleHandleStateChangeRuntimeException - Thrown in case a state
change is not possible due to the current state the referenced
component is in.default void startUnchecked(H aHandle)
start(Object) without you to
require catching an StartException.aHandle - The handle identifying the component.org.refcodes.exception.HiddenException - encapsulates the cause and is thrown upon
encountering a StartException exceptionCopyright © 2017. All rights reserved.