Interface ProcessOutputHandler


  • public interface ProcessOutputHandler
    ProcessOutputHandler defines methods to handle the std out and std error of the launched executable using the ProcessExec class.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void processErrorData​(java.io.InputStream ipStream)
      This method handles the std error out of the process launched.
      void processOutputData​(java.io.InputStream ipStream)
      This method handles the output data of the process launched.
    • Method Detail

      • processOutputData

        void processOutputData​(java.io.InputStream ipStream)
        This method handles the output data of the process launched.
        Parameters:
        InputStream - Contains the output data of the process launched.
      • processErrorData

        void processErrorData​(java.io.InputStream ipStream)
        This method handles the std error out of the process launched.
        Parameters:
        InputStream - Contains the std error data of the process launched