Esempio n. 1
0
 /**
  * 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);
   }
 }
Esempio n. 2
0
 public void write(String input) throws IOException {
   in.write(input);
 }