Modifier and Type | Method and Description |
---|---|
EtStation |
EtSystem.createStation(EtStationConfig config,
java.lang.String name)
Creates a new station placed at the end of the ordered list of stations.
|
EtStation |
EtSystem.createStation(EtStationConfig config,
java.lang.String name,
int position)
Creates a new station at a specified position in the ordered list of
stations.
|
EtStation |
EtSystem.createStation(EtStationConfig config,
java.lang.String name,
int position,
int parallelPosition)
Creates a new station at a specified position in the ordered list of
stations and in a specified position in an ordered list of parallel
stations if it is a parallel station.
|
EtStation |
EtAttachment.getStation()
Gets the object of the station attached to.
|
EtStation |
EtSystem.stationNameToObject(java.lang.String name)
Gets a station's object representation from its name.
|
Modifier and Type | Method and Description |
---|---|
EtAttachment |
EtSystem.attach(EtStation station)
Create an attachment to a station.
|
int |
EtSystem.getStationParallelPosition(EtStation station)
Gets the position of a parallel station in its ordered list of
parallel stations.
|
int |
EtSystem.getStationPosition(EtStation station)
Gets the position of a station in the ordered list of stations.
|
void |
EtSystem.removeStation(EtStation station)
Removes an existing station.
|
void |
EtSystem.setStationPosition(EtStation station,
int position,
int parallelPosition)
Changes the position of a station in the ordered list of stations.
|
boolean |
EtSystem.stationAttached(EtStation station,
EtAttachment att)
Is given attachment attached to a station?
|
void |
EtSystem.wakeUpAll(EtStation station)
Wake up all attachments waiting to read events from a station's
empty input list.
|