|
ConcentratorBaseAllowSortsByArrival Property
|
Gets or sets flag that determines whether or not to allow incoming measurements with bad timestamps
to be sorted by arrival time.
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax public bool AllowSortsByArrival { get; set; }
Public Property AllowSortsByArrival As Boolean
Get
Set
public:
property bool AllowSortsByArrival {
bool get ();
void set (bool value);
}
member AllowSortsByArrival : bool with get, set
function get_AllowSortsByArrival();
function set_AllowSortsByArrival(value);
View SourceProperty Value
BooleanRemarks
Value defaults to true, so any incoming measurement with a bad timestamp quality will be sorted
according to its arrival time. Setting the property to false will cause all measurements with a
bad timestamp quality to be discarded. This property will only be considered when
IgnoreBadTimestamps is false.
Value will be forced to false if ProcessByReceivedTimestamp is true.
See Also