com.buglabs.bug.base.pub
Interface ICommandResponseHandler


public interface ICommandResponseHandler

A callback interface for handling output resulting from command execution in a shell session.


Method Summary
 void response(java.lang.String line, boolean isError)
          Client implements this method to handle output from shell session.
 

Method Detail

response

void response(java.lang.String line,
              boolean isError)
Client implements this method to handle output from shell session.

Parameters:
line - Line of output
isError - true if data was read from stderr, false if read from stdout.