ISolver CallerUpdate 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: ASAP.NRP.Solvers
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
C#
void UpdateSolverStatus(
string message,
Roster roster
)VB
Sub UpdateSolverStatus (
message As String,
roster As Roster
)C++
void UpdateSolverStatus(
String^ message,
Roster^ roster
)F#
abstract UpdateSolverStatus :
message : string *
roster : Roster -> 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.