ConcentratorBaseAssignMeasurementToFrame Method

Assigns IMeasurement to its associated IFrame.

Definition

Namespace: Gemstone.Timeseries
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.172 -- Release Build+ace768d5e4de8ccdda90a0d8c11832c746f370e1
protected virtual void AssignMeasurementToFrame(
	IFrame frame,
	IMeasurement measurement
)

Parameters

frame  IFrame
The IFrame that is used.
measurement  IMeasurement
The type of IMeasurement to use."/>

Remarks

Derived classes can choose to override this method to handle custom assignment of a IMeasurement to its IFrame. Default behavior simply assigns measurement to frame's keyed measurement dictionary: frame.Measurements[measurement.Key] = measurement;

See Also