| MultiPartitionRecordReaderTStopAtEndOfPartition 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; }
Public Property StopAtEndOfPartition As Boolean
Get
Set
public:
property bool StopAtEndOfPartition {
bool get ();
void set (bool value);
}
member StopAtEndOfPartition : bool with get, set
Property Value
Type:
Boolean if reading records will halt at the end of the current partition; otherwise,
.
Remarks
If this property is , the ReadRecord function will return false when the
end of the current partition is reached.
Like setting AllowAdditionalPartitions to , this will also prevent additional partitions from being fetched.
To advance to the next partition, set this property back to , and call ReadRecord again.
See Also