Groovy Documentation

org.gradle.util.exec
Interface ExecOutputHandle


interface ExecOutputHandle

author:
Tom Eyckmans


Method Summary
void endOutput()

Called when the end of output from an exec'd process has been reached.

boolean execOutputHandleError(java.lang.Throwable t)

Called when an exeception occurs reading the output from an exec'd process.

void handleOutputLine(java.lang.String outputLine)

Called when a line of output has been read from an exec'd process.

 

Method Detail

endOutput

public void endOutput()
Called when the end of output from an exec'd process has been reached.


execOutputHandleError

public boolean execOutputHandleError(java.lang.Throwable t)
Called when an exeception occurs reading the output from an exec'd process.
return:
true if output handling should continue, false if output handling should end.


handleOutputLine

public void handleOutputLine(java.lang.String outputLine)
Called when a line of output has been read from an exec'd process.


 

Groovy Documentation