|
GetData
Gets the specified element of a timeseries buffer.
datetime GetData(
|
Parameters
index
[in] Index of the buffer element.
Return Value
The timeseries buffer element, or 0.
GetData
Gets the data from a timeseries buffer by starting position and number.
int GetData(
|
Parameters
start_pos
[in] Starting position of timeseries.
count
[in] Number of timeseries buffer elements.
buffer
[in] Reference to the array for storing data.
Return Value
>=0 - successful, -1 - cannot receive data.
GetData
Gets the data from timeseries buffer by starting time and number.
int GetData(
|
Parameters
start_time
[in] Time of a timeseries buffer initial element.
count
[in] Number of timeseries buffer elements.
buffer
[in] Reference to the array for storing data.
Return Value
>=0 - successful, -1 - cannot receive data.
GetData
Gets the data from a timeseries buffer by starting and stop times.
int GetData(
|
Parameters
start_time
[in] Time of a timeseries buffer initial element.
stop_time
[in] Time of a timeseries buffer end element.
buffer
[in] Reference to the array for storing data
Return Value
>=0 - successful, -1 - cannot receive data.