 | SpillRecordWriterTSpillOutput Method |
When overridden by a derived class, writes the spill data to the output.
Namespace: Ookii.Jumbo.Jet.ChannelsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxprotected abstract void SpillOutput(
bool finalSpill
)
Protected MustOverride Sub SpillOutput (
finalSpill As Boolean
)
protected:
virtual void SpillOutput(
bool finalSpill
) abstract
abstract SpillOutput :
finalSpill : bool -> unit
Parameters
- finalSpill Boolean
- 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