Click or drag to resize

TimeIntervalCollection<T>.AddMergingData Method (TimeInterval<T>, MergeTimeIntervalDataCallback<T>)

Adds an interval to the interval collection. The callback function specified will determine the instances of data occurring on any intersections by merging the existing Data on the interval in this collection with the Data on the interval to add.

Namespace:  AGI.Foundation.Time
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public void AddMergingData(
	TimeInterval<T> item,
	MergeTimeIntervalDataCallback<T> mergeCallback
)

Parameters

item
Type: AGI.Foundation.Time.TimeInterval<T>
The interval to add.
mergeCallback
Type: AGI.Foundation.Time.MergeTimeIntervalDataCallback<T>
The method to use to "merge" the data on two intervals that intersect. If null, the data from this interval will be used.
See Also