You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/modules/ROOT/pages/enterprise-edition/enterprise-edition.adoc
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1030,3 +1030,52 @@ public class MyConstraintProvider implements ConstraintProvider {
1030
1030
This transformation means that debugging breakpoints placed inside the original `ConstraintProvider` will not be honored in the transformed `ConstraintProvider`.
1031
1031
1032
1032
From the above, you can see how this feature allows building blocks to share functionally equivalent parents, without needing the `ConstraintProvider` to be written in an awkward way.
1033
+
1034
+
1035
+
[#throttlingBestSolutionEvents]
1036
+
=== Throttling best solution events in `SolverManager`
1037
+
1038
+
This feature helps you avoid overloading your system with best solution events,
1039
+
especially in the early phase of the solving process when the solver is typically improving the solution very rapidly.
1040
+
1041
+
To enable event throttling, use `ThrottlingBestSolutionConsumer` when starting a new `SolverJob` using `SolverManager`:
0 commit comments