Interface LogListener
- All Known Implementing Classes:
 LogPrinter,LogSplitter,LogWatcher,NullPrinter
public interface LogListener
Receives line-by-line logs from 
LogListenable.- Author:
 - Kohsuke Kawaguchi
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidIndicates the EOF.voidprocessLine(String line) Receives log output from Jenkins process one line at a time, in the order. 
- 
Method Details
- 
processLine
Receives log output from Jenkins process one line at a time, in the order.- Throws:
 IOException
 - 
processClose
Indicates the EOF.- Parameters:
 t- if the termination of log source is unexpected, indicate the cause of the problem.
 
 -