|
OutputAdapterBaseSupportsTemporalProcessing Property
|
Gets the flag indicating if this
OutputAdapterBase implementation supports temporal processing.
Namespace: GSF.TimeSeries.AdaptersAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.248-beta
Syntaxpublic override bool SupportsTemporalProcessing { get; }
Public Overrides ReadOnly Property SupportsTemporalProcessing As Boolean
Get
public:
virtual property bool SupportsTemporalProcessing {
bool get () override;
}
abstract SupportsTemporalProcessing : bool with get
override SupportsTemporalProcessing : bool with get
function get_SupportsTemporalProcessing();
View SourceProperty Value
BooleanImplements
IAdapterSupportsTemporalProcessingIAdapterSupportsTemporalProcessing
Remarks
For output adapters that archive data it is assumed that the desired behavior will be to not support temporal processing
since the data being processed has already been archived (i.e., no need to attempt to rearchive old data). As a result
the default behavior for an output adapter is to not support temporal processing when
OutputIsForArchive
is
true. If you have an output adapter that you want to support temporal data processing independent of the
OutputIsForArchive value, then override this property and force the base value to the desired state.
See Also