IShift Solver CallerUpdate Shift Solver Status Method
If a Solver's SolverCaller property is set to an object which implements
this interface then the Solver will call this method whenever it has something new
to report.
Definition
Namespace: SRS.ShiftSolver.Solvers
Assembly: ShiftSolver (in ShiftSolver.dll) Version: 2.3.0+2c0a765360648175f37b32b9a08ecd256c911c4c
Assembly: ShiftSolver (in ShiftSolver.dll) Version: 2.3.0+2c0a765360648175f37b32b9a08ecd256c911c4c
C#
void UpdateShiftSolverStatus(
string message,
Solution solution
)VB
Sub UpdateShiftSolverStatus (
message As String,
solution As Solution
)C++
void UpdateShiftSolverStatus(
String^ message,
Solution^ solution
)F#
abstract UpdateShiftSolverStatus :
message : string *
solution : Solution -> unit Parameters
Remarks
The solver will be waiting while this method is
executing so it is important to keep it fast and/or only
execute more time-consuming functions in this method every
1000 millisecs or so.