OutputPort
Instance of an output port of a Processor. This class represents the output port through which data is sent from a processor to another processor's input port.
Properties
name
name:
string
The name of this output port. Same as getName.
Example
const outputPortName = outputPort.name; // Returns the name of the output port, e.g. 'My-Output-Port'.
peerPortName
peerPortName:
string
The name of the peer port (input port of the connected processor) that this output port is connected to.
Example
const peerPortName = outputPort.peerPortName; // Returns the name of the peer port, e.g. 'My-Input-Port'.
peerProcessorName
peerProcessorName:
string
The name of the processor to which this output port's peer port belongs.