H
- The type of the handle.INPUT
- The type of the input connection to be used.OUTPUT
- The type of the output connection to be used.public interface InputOutputOpenableHandle<H,INPUT,OUTPUT>
InputOutputOpenableHandle
interface defines those methods related
to the handle based open/connect life-cycle.
The handle reference requires the InputOutputOpenable
interface to be
implemented.
Modifier and Type | Interface and Description |
---|---|
static interface |
InputOutputOpenableHandle.InputOutputOpenAutomatonHandle<H,INPUT,OUTPUT>
The
InputOutputOpenableHandle.InputOutputOpenAutomatonHandle interface defines those
methods related to the handle based open/connect life-cycle. |
Modifier and Type | Method and Description |
---|---|
boolean |
hasInputOutputOpenable(H aHandle)
Determines whether the handle reference is
InputOutputOpenable by
implementing the InputOutputOpenable interface. |
void |
open(H aHandle,
INPUT aInputConnection,
OUTPUT aOutputConnection)
Open/connect the component identified by the given handle.
|
boolean hasInputOutputOpenable(H aHandle) throws UnknownHandleRuntimeException
InputOutputOpenable
by
implementing the InputOutputOpenable
interface.aHandle
- The handle to test whether the reference provides the
according functionality.UnknownHandleRuntimeException
- in case the handle is unknown.void open(H aHandle, INPUT aInputConnection, OUTPUT aOutputConnection) throws OpenException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException, IllegaleHandleStateChangeRuntimeException
aInputConnection
- The input connection used for opening the
connection.aOutputConnection
- The output connection used for opening the
connection.aHandle
- The handle identifying the component.OpenException
- in case opening/connecting 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.