5051525354555657
* binary stream to write execution data to * @throws IOException * if the header can't be written */ public ExecutionDataWriter(final OutputStream output) throws IOException { this.out = new CompactDataOutput(output); writeHeader(); }