Click or drag to resize

MultiPartitionRecordReader<T>.StopAtEndOfPartition Property

Gets or sets a value indicating whether reading records will halt at the end of the current partition.

Namespace:  Ookii.Jumbo.Jet
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public bool StopAtEndOfPartition { get; set; }

Property Value

Type: Boolean
true if reading records will halt at the end of the current partition; otherwise, false.
Remarks

If this property is false, the ReadRecord() function will return false when the end of the current partition is reached.

Like setting AllowAdditionalPartitions to false, this will also prevent additional partitions from being fetched.

To advance to the next partition, set this property back to false, and call ReadRecord() again.

See Also