LinkDelayEvaluatorGetAvailability Method |
Computes the intervals when this evaluator is available given the intervals when the final point
is available.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract TimeIntervalCollection GetAvailability(
TimeIntervalCollection consideredIntervals,
TimeIntervalCollection finalPointAvailability
)
Public MustOverride Function GetAvailability (
consideredIntervals As TimeIntervalCollection,
finalPointAvailability As TimeIntervalCollection
) As TimeIntervalCollection
public:
virtual TimeIntervalCollection^ GetAvailability(
TimeIntervalCollection^ consideredIntervals,
TimeIntervalCollection^ finalPointAvailability
) abstract
abstract GetAvailability :
consideredIntervals : TimeIntervalCollection *
finalPointAvailability : TimeIntervalCollection -> TimeIntervalCollection
Parameters
- consideredIntervals
- Type: AGI.Foundation.TimeTimeIntervalCollection
The intervals over which availability information is needed. Note that the returned availability
intervals may indicate availability outside of these intervals of consideration.
- finalPointAvailability
- Type: AGI.Foundation.TimeTimeIntervalCollection
The intervals when the final point is available. These intervals are expressed on the final point.
Return Value
Type:
TimeIntervalCollectionThe intervals when the link delay is available.
See Also