java.lang.Object
java.io.OutputStream
com.flexstor.common.util.LauncherOutputStream
- public class LauncherOutputStream
- extends java.io.OutputStream
Redirects all standard output and standard errors to a stream.
Please note that this class will only work with the app launcher
because all of the output is directed to a native method in the app
launcher Native (C++) code.
- Version:
- 2.2
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
buf
private java.lang.StringBuffer buf
LauncherOutputStream
public LauncherOutputStream()
writeToConsole
private void writeToConsole(java.lang.String s)
write
public void write(int i)
throws java.io.IOException
- Description copied from class:
java.io.OutputStream
- This method writes a single byte to the output stream. The byte written
is the low eight bits of the
int passed and a argument.
Subclasses must provide an implementation of this abstract method