Uses of Interface
org.biojava.utils.process.OutputHandler
-
Packages that use OutputHandler Package Description org.biojava.utils.process Classes and interfaces to execute external processes and to handle its input and output streams in multiple threads. -
-
Uses of OutputHandler in org.biojava.utils.process
Classes in org.biojava.utils.process that implement OutputHandler Modifier and Type Class Description class
SimpleOutputHandler
Simple output handler that pipes the output of an external process to an output stream.class
WriterOutputHandler
Simple output handler that writes the output of an external process to an writer.Methods in org.biojava.utils.process that return OutputHandler Modifier and Type Method Description OutputHandler
ExternalProcess. getErrorHandler()
Gets the output error handler which is responsible for the standard error output of the external process.OutputHandler
ExternalProcess. getOutputHandler()
Gets the output handler which is responsible for the standard output of the external process.Methods in org.biojava.utils.process with parameters of type OutputHandler Modifier and Type Method Description void
ExternalProcess. setErrorHandler(OutputHandler errorHandler)
Sets the output error handler which is responsible for the standard error output of the external process.void
ExternalProcess. setOutputHandler(OutputHandler outputHandler)
Sets the output handler which is responsible for the standard output of the external process.
-