|
ConcentratorBaseProcessByReceivedTimestamp Property
|
Gets or sets flag that determines if concentrator should sort measurements by received time.
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax public bool ProcessByReceivedTimestamp { get; set; }
Public Property ProcessByReceivedTimestamp As Boolean
Get
Set
public:
property bool ProcessByReceivedTimestamp {
bool get ();
void set (bool value);
}
member ProcessByReceivedTimestamp : bool with get, set
function get_ProcessByReceivedTimestamp();
function set_ProcessByReceivedTimestamp(value);
View SourceProperty Value
BooleanRemarks
Setting this value to true will make concentrator use the timestamp of measurement
reception, which is typically the IMeasurement creation time, for sorting and
publication. This is useful in scenarios where the concentrator will be receiving very large
volumes of data but not necessarily in real-time, such as, reading values from a file where
you want data to be sorted and processed as fast as possible.
Setting this value to true will force UseLocalClockAsRealTime to be true
and AllowSortsByArrival to be false.
See Also