Returns a handle to the aborter being used by the invoking object.
Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0
Syntax
| C# |
|---|
public virtual Cplex..::..Aborter GetAborter() |
| Visual Basic |
|---|
Public Overridable Function GetAborter As Cplex..::..Aborter |
Remarks
The following example shows how to test whether an aborter is
currently in use; that is, how to test for an empty handle.
if (cplex.GetAborter().GetImpl())
System.Console.WriteLine("There is an aborter installed.");
else
System.Console.Writeline("No aborter installed.");