|
SubscriptionInfoProcessingInterval Property
|
Gets or sets the processing interval requested by the subscriber.
A value of -1 indicates the default processing interval.
A value of 0 indicates data will be processed as fast as
possible.
Namespace: GSF.TimeSeries.TransportAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.207-beta
Syntax public virtual int ProcessingInterval { get; set; }
Public Overridable Property ProcessingInterval As Integer
Get
Set
public:
virtual property int ProcessingInterval {
int get ();
void set (int value);
}
abstract ProcessingInterval : int with get, set
override ProcessingInterval : int with get, set
function get_ProcessingInterval();
function set_ProcessingInterval(value);
View SourceProperty Value
Int32Remarks
With the exception of the values of -1 and 0, the ProcessingInterval value specifies the desired historical playback data
processing interval in milliseconds. This is basically a delay, or timer interval, over which to process data. Setting this value to -1 means
to use the default processing interval while setting the value to 0 means to process data as fast as possible.
See Also