public interface IReportWriter
Modifier and Type | Method and Description |
---|---|
void |
writeToStream(OutputStream outStream,
Collection<ICompilerProblem> problems)
Writes the current graph state and root compilation nodes to the output stream specified
as a link report.
|
void writeToStream(OutputStream outStream, Collection<ICompilerProblem> problems) throws InterruptedException
This should only be called when all compilation units are finished. There are no guarantees on the effects if called when compiler threads are still running.
outStream
- An OutputStream
that the report will be written toproblems
- A Collection
of ICompilerProblem
that this class will add to in case of exceptions or problemsInterruptedException
- can occur if this method is called while compilation is happeningCopyright © 2016 The Apache Software Foundation. All rights reserved.