ActionAdapterBaseTryGetMinimumNeededMeasurements Method

Attempts to retrieve the minimum needed number of measurements from the frame (as specified by MinimumMeasurementsToUse)

Definition

Namespace: Gemstone.Timeseries.Adapters
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.136 -- Release Build+045677775a56d15698be6ced5ce5213063e47102
protected virtual bool TryGetMinimumNeededMeasurements(
	IFrame frame,
	out IMeasurement[] measurements
)

Parameters

frame  IFrame
Source frame for the measurements
measurements  IMeasurement
Return array of measurements

Return Value

Boolean
True if minimum needed number of measurements were returned in measurement array

Remarks

Remember this function will *only* return the minimum needed number of measurements, no more. If you want to use all available measurements in your adapter you should just use Frame.Measurements.Values directly.

Note that the measurements array parameter will be created if the reference is null, otherwise if caller creates array it must be sized to MinimumMeasurementsToUse

See Also