EvaluatorGroupCallback0TEvaluator Delegate |
A delegate for a method that takes no creation parameters (other than the EvaluatorGroup) and returns an evaluator.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate TEvaluator Callback0<TEvaluator>(
EvaluatorGroup group
)
Public Delegate Function Callback0(Of TEvaluator) (
group As EvaluatorGroup
) As TEvaluator
generic<typename TEvaluator>
public delegate TEvaluator Callback0(
EvaluatorGroup^ group
)
type Callback0 =
delegate of
group : EvaluatorGroup -> 'TEvaluator
Parameters
- group
- Type: AGI.FoundationEvaluatorGroup
The group with which to associate the new evaluator. By grouping evaluators
that are often evaluated at the same Julian dates, common computations can be performed only once
for the entire group instead of multiple times for each evaluator.
Type Parameters
- TEvaluator
- The type of the created evaluator.
Return Value
Type:
TEvaluatorThe evaluator.
See Also