C# Class GSF.Historian.Exporters.ExporterBase.RealTimeData

A class that can be used to save real-time time-series data for Exports of type ExportType.RealTime.
Mostra file Open project: GridProtectionAlliance/gsf

Public Properties

Property Type Description
Data IList
Export Export
Listener DataListener

Public Methods

Method Description
RealTimeData ( Export export, DataListener listener, IList data ) : System

Initializes a new instance of the RealTimeData class.

Method Details

RealTimeData() public method

Initializes a new instance of the RealTimeData class.
public RealTimeData ( Export export, DataListener listener, IList data ) : System
export Export The to which the belongs.
listener DataListener The that provided the .
data IList The real-time time-series data received by the .
return System

Property Details

Data public_oe property

Gets or sets the real-time time-series data received by the Listener.
public IList Data
return IList

Export public_oe property

Gets or sets the Export to which the Data belongs.
public Export Export
return Export

Listener public_oe property

Gets or sets the DataListener that provided the Data.
public DataListener Listener
return DataListener