AbstractInterruptMonitor

AbstractInterruptMonitor class

Monitor for interruption requests in all time-consuming operations.

Properties

NameTypeDescription
IsInterruptionRequestedbooleanIndicates whether interruption is requested for current operation. If true then current operation will be interrupted. I
TerminateWithoutExceptionbooleanWhen procedure is interrupted, whether terminate the procedure quietly or throw an Exception. Default is false, that is,

AbstractInterruptMonitor.IsInterruptionRequested property

Indicates whether interruption is requested for current operation. If true then current operation will be interrupted. Implementation should perform fast and efficient check here, otherwise it may become another bottleneck for the procedure.

Type: boolean

AbstractInterruptMonitor.TerminateWithoutException property

When procedure is interrupted, whether terminate the procedure quietly or throw an Exception. Default is false, that is, when IsInterruptionRequested is true, a CellsException with code ExceptionType.INTERRUPTED will be thrown.

Type: boolean