/** * Write something out to the node process. * * @param value The system. * @throws IOException */ public synchronized void writeToErlang(final String value) throws IOException { if (!isStarted()) { return; } final IStreamsProxy astreamsProxy = getStreamsProxy(); if (astreamsProxy != null) { astreamsProxy.write(value); } }
public void write(String input) throws IOException { in.write(input); }