# OutputPort
# OutputPort
Instance of an output port of a Processor
Kind: global class
# getPeerProcessorName
Returns the name of the processor that this processor is attached to.
// Get the output port by name
const OUTPUT_PORT = processor.getOutputPort('My-Output-Port');
// Now get the name of the processor that this output port is connected ti.
let peerProcessorName = OUTPUT_PORT.getPeerProcessorName();
Kind: instance method of OutputPort
Returns: string
- Name of Processor which this output port is connected to.