StoppingConditionTriggeredBehavior Enumeration |
Describes how propagation should behave after a
stopping condition
has been satisfied.
This allows the code handing the
SatisfiedCallback
event to control how or if propagation will continue.
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum StoppingConditionTriggeredBehavior
Public Enumeration StoppingConditionTriggeredBehavior
public enum class StoppingConditionTriggeredBehavior
type StoppingConditionTriggeredBehavior
Members
| Member name | Description |
---|
| StopFunction |
Stops propagation of the function. This is the default behavior.
|
| ContinueToNextEvent |
Continues propagation until the next time a stopping condition
is triggered.
|
| ContinueAndResetCounter |
Continues propagation until the next time a stopping condition
is triggered and it resets the iteration counter.
|
| DefaultBehavior |
If this was the last event to be found by this condition then let propagation stop. Otherwise proceed to the
next event normally.
|
See Also