Method | Description | |
---|---|---|
DatasetTemplate ( string dataTableName ) : |
Returns a template DataSet that can be used for storing time-series data in a tabular format. The returned DataSet consists of two DataTables with the following structure: Table 1 is to be used for storing time-series data. |
|
Dispose ( ) : void |
Releases all the resources used by the exporter.
|
|
Equals ( object obj ) : bool |
Determines whether the current exporter object is equal to obj.
|
|
FindExport ( string exportName ) : Export |
Returns the Export for the specified exportName from the Exports.
|
|
FindListener ( string listenerName ) : DataListener |
Returns the DataListener for the specified listenerName from the Listeners.
|
|
GetHashCode ( ) : int |
Returns the hash code for the current exporter object.
|
|
ProcessExport ( string exportName ) : void |
Processes Export with the specified exportName.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Releases the unmanaged resources used by the exporter and optionally releases the managed resources.
|
|
ExporterBase ( string name ) : System |
Initializes a new instance of the exporter.
|
|
GetExportData ( Export export ) : IList |
Returns the current time-series data for the specified export organized by listener.
|
|
GetExportDataAsDataset ( Export export, string dataTableName ) : |
Returns the current time-series data for the specified export in a DataSet.
|
|
OnExportProcessException ( Export export, |
Raises the ExportProcessException event.
|
|
OnExportProcessed ( Export export ) : void |
Raises the ExportProcessed event.
|
|
OnStatusUpdate ( string status ) : void |
Raises the StatusUpdate event.
|
|
ProcessExport ( Export export ) : void |
When overridden in a derived class, processes the export using the current DataListener.Data.
|
|
ProcessRealTimeData ( object sender, EventArgs |
Handles the DataListener.DataExtracted event for all the Listeners.
|
|
ProcessRealTimeExport ( Export export, DataListener listener, IList |
When overridden in a derived class, processes the export using the real-time data.
|
Method | Description | |
---|---|---|
ExportTimer_Elapsed ( object sender, System.Timers.ElapsedEventArgs e ) : void | ||
Exports_CollectionChanged ( object sender, |
||
Listeners_CollectionChanged ( object sender, |
||
ProcessExports ( Export items ) : void |
Processes non-real-time exports.
|
|
ProcessRealTimeExports ( RealTimeData items ) : void |
Processes real-time exports.
|
public static DatasetTemplate ( string dataTableName ) : |
||
dataTableName | string | Name of the |
return |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
return | void |
public Equals ( object obj ) : bool | ||
obj | object | Object against which the current exporter object is to be compared for equality. |
return | bool |
protected ExporterBase ( string name ) : System | ||
name | string | Name of the exporter. |
return | System |
public FindExport ( string exportName ) : Export | ||
exportName | string | |
return | Export |
public FindListener ( string listenerName ) : DataListener | ||
listenerName | string | |
return | DataListener |
protected GetExportData ( Export export ) : IList |
||
export | Export | |
return | IList |
protected GetExportDataAsDataset ( Export export, string dataTableName ) : |
||
export | Export | |
dataTableName | string | Name of the |
return |
protected OnExportProcessException ( Export export, |
||
export | Export | |
exception | ||
return | void |
protected OnExportProcessed ( Export export ) : void | ||
export | Export | |
return | void |
protected OnStatusUpdate ( string status ) : void | ||
status | string | Status update message to send to |
return | void |
protected abstract ProcessExport ( Export export ) : void | ||
export | Export | |
return | void |
public ProcessExport ( string exportName ) : void | ||
exportName | string | |
return | void |
protected ProcessRealTimeData ( object sender, EventArgs |
||
sender | object | |
e | EventArgs |
|
return | void |
protected abstract ProcessRealTimeExport ( Export export, DataListener listener, IList |
||
export | Export | |
listener | DataListener | |
data | IList |
Real-time time-series data received by the |
return | void |