Click or drag to resize

SpillRecordWriterTSpillOutput Method

When overridden by a derived class, writes the spill data to the output.

Namespace:  Ookii.Jumbo.Jet.Channels
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
protected abstract void SpillOutput(
	bool finalSpill
)

Parameters

finalSpill
Type: SystemBoolean
If set to , this is the final spill.
Remarks

Implementers should call the WritePartition(Int32, Stream) method to write each spill partition to their output.

It is not guaranteed that the finalSpill parameter will ever be . If data was flushed by a background spill and no further data was written into the buffer before FinishWriting is called, then this method is never called with finalSpill set to . If you need to perform extra work after the final spill, override the FinishWriting method instead.

See Also