EvaluatorGroupCallAndMemoizeTResult Method (EvaluatorGroupCallback0TResult) |
Optimizes calls to a callback that is expected to be called multiple times so that future calls
with the same parameters return a cached result rather than actually invoking the callback again.
The first time this method is called with a particular set of parameters, the callback
is invoked and the result is stored in the evaluator group. The second and successive times this
method is called with the same parameters, the cached result is returned without invoking the
callback.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TResult CallAndMemoize<TResult>(
EvaluatorGroupCallback0<TResult> callback
)
Public Function CallAndMemoize(Of TResult) (
callback As EvaluatorGroupCallback0(Of TResult)
) As TResult
public:
generic<typename TResult>
TResult CallAndMemoize(
EvaluatorGroupCallback0<TResult>^ callback
)
member CallAndMemoize :
callback : EvaluatorGroupCallback0<'TResult> -> 'TResult
Parameters
- callback
- Type: AGI.FoundationEvaluatorGroupCallback0TResult
The method to invoke. This method must not have side-effects.
Type Parameters
- TResult
- The type of result returned by the method.
Return Value
Type:
TResultThe result of invoking the callback.
Exceptions See Also