@see OutputPort#send(javaflow.components.api.Packet)
8485868788899091
private void sendMessageOrThrowErrorIfNoConnection(PacketImpl packet) { if (isConnected()) { packet.leftComponentTowards(in); in.send(this, packet); } else { throw new PortIsClosed("Tried to send packet through closed output port (" + this + ")"); } }