IScheduler Interrupt Method (String)Quartz.NET API Documentation
Request the interruption, within this Scheduler instance, of the identified executing job instance, which must be an implementor of the IInterruptableJob interface.

Namespace: Quartz
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

bool Interrupt(
	string fireInstanceId
)

Parameters

fireInstanceId
Type: System String

[Missing <param name="fireInstanceId"/> documentation for "M:Quartz.IScheduler.Interrupt(System.String)"]

Return Value

Type: Boolean
true if the identified job instance was found and interrupted.
Remarks

This method is not cluster aware. That is, it will only interrupt instances of the identified InterruptableJob currently executing in this Scheduler instance, not across the entire cluster.
See Also