ComputeNewThresholdCallbackT Delegate |
The callback to compute a new threshold based on the old threshold.
Namespace:
AGI.Foundation.SegmentPropagation
Assembly:
AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate T ComputeNewThresholdCallback<T>(
T currentThreshold
)
Public Delegate Function ComputeNewThresholdCallback(Of T) (
currentThreshold As T
) As T
generic<typename T>
public delegate T ComputeNewThresholdCallback(
T currentThreshold
)
type ComputeNewThresholdCallback =
delegate of
currentThreshold : 'T -> 'T
Parameters
- currentThreshold
- Type: T
The current threshold as a double.
Type Parameters
- T
- The type of the threshold, often a Double,
Duration or JulianDate.
Return Value
Type:
TThe value of the new threshold.
See Also