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.128 -- Release Build+e2476c52e94864f123f37e60764c948e49eb89eb
protected virtual bool TryGetMinimumNeededMeasurements(
	IFrame frame,
	ref 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