 | MultiPartitionRecordReaderTStopAtEndOfPartition Property |
Gets or sets a value indicating whether reading records will halt at the end of the current partition.
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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
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