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.
|
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.UnsupportedHandleOperationRuntimeException
- in case the reference
of the handle does not support the requested operation.UnknownHandleRuntimeException
- in case the given handle is
unknown.IllegaleHandleStateChangeRuntimeException
- Thrown in case a state
change is not possible due to the current state the referenced
component is in.Copyright © 2015. All rights reserved.