[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eMPCallbackList\u003c/code\u003e is a class in C++ that executes a sequence of callbacks provided during its construction.\u003c/p\u003e\n"],["\u003cp\u003eIt offers a \u003ccode\u003eRunCallback\u003c/code\u003e method to trigger the execution of all registered callbacks, using an \u003ccode\u003eMPCallbackContext\u003c/code\u003e for data exchange.\u003c/p\u003e\n"],["\u003cp\u003eThis class simplifies the management and sequential execution of multiple callbacks within the OR-Tools linear solver framework.\u003c/p\u003e\n"]]],["The `MPCallbackList` class in C++ manages a list of callbacks. It is initialized with a vector of `MPCallback` pointers. Its core functionality is encapsulated in the `RunCallback` method, which iterates through and executes each callback in the list sequentially. The `MPCallbackList` object's constructor takes the callback list to use as an argument.\n"],null,["# MPCallbackList\n\nC++ Reference: class MPCallbackList\n===================================\n\n\nNote: This documentation is automatically generated.\n\nSingle callback that runs the list of callbacks given at construction, in sequence.\n\n| Method ||\n|----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| [`MPCallbackList`](https://github.com/google/or-tools/blob/v9.4/ortools/linear_solver/linear_solver_callback.h#L171) | Return type: `explicit ` Arguments: `const std::vector\u003cMPCallback*\u003e& callbacks` \u003cbr /\u003e |\n| [`RunCallback`](https://github.com/google/or-tools/blob/v9.4/ortools/linear_solver/linear_solver_callback.h#L174) | Return type: `void ` Arguments: `MPCallbackContext* context` Runs all callbacks from the list given at construction, in sequence. |"]]