ThreadInterruptMonitor

ThreadInterruptMonitor class

Simple implementation of AbstractInterruptMonitor by starting another thread to require the interruption after sleeping user specified limit.

Constructors

NameDescription
ThreadInterruptMonitorConstructs one interruption monitor.

Properties

NameTypeDescription
IsInterruptionRequestedbooleanThis implementation just checks whether the time cost(from the time when starting this monitor to now) is greater than u
TerminateWithoutExceptionbooleanSee TerminateWithoutException . This property is specified by user when constructing this monitor instance.

Methods

NameDescription
startMonitorStarts the monitor with the specified time limit. The start time to calculate time cost is just when this method is call
finishMonitorFinishes the monitor for one procedure.

Calling this method after the monitored procedure can release the monitor threa |

ThreadInterruptMonitor(terminateWithoutException)

Constructs one interruption monitor.

ParameterTypeDescription
terminateWithoutExceptionbooleanTerminateWithoutException

ThreadInterruptMonitor.IsInterruptionRequested property

This implementation just checks whether the time cost(from the time when starting this monitor to now) is greater than user specified limit.

Type: boolean

ThreadInterruptMonitor.TerminateWithoutException property

See TerminateWithoutException . This property is specified by user when constructing this monitor instance.

Type: boolean

startMonitor(msLimit)

Starts the monitor with the specified time limit. The start time to calculate time cost is just when this method is called, so the procedure which needs to be monitored should be started just after this call.

ParameterTypeDescription
msLimitinttime limit(ms) to require the interruption.

finishMonitor()

Finishes the monitor for one procedure.

Calling this method after the monitored procedure can release the monitor thread earlier, especially when there is no interruption for it(the time cost of that procedure is less than the specified time limit).