All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sgi.sysadm.util.ProcessListener

public interface ProcessListener
A ProcessListener is notified of ProcessEvents.


Method Index

 o processErrorData(ProcessEvent)
The Process has generated data on its standard error stream.
 o processExited(ProcessEvent)
The Process has exited.
 o processOutputData(ProcessEvent)
The Process has generated data on its standard output stream.

Methods

 o processOutputData
 public abstract void processOutputData(ProcessEvent event)
The Process has generated data on its standard output stream.

Parameters:
event - An event that contains the output data.
 o processErrorData
 public abstract void processErrorData(ProcessEvent event)
The Process has generated data on its standard error stream.

Parameters:
event - An event that contains the error data.
 o processExited
 public abstract void processExited(ProcessEvent event)
The Process has exited.

Parameters:
event - An event that contains the Process exit code.

All Packages  Class Hierarchy  This Package  Previous  Next  Index