IListenerManager AddJobListener Method (IJobListener, IList IMatcher JobKey  )Quartz.NET API Documentation
Add the given IJobListener to theIScheduler, and register it to receive events for Jobs that are matched by ANY of the given Matchers.

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

void AddJobListener(
	IJobListener jobListener,
	IList<IMatcher<JobKey>> matchers
)

Parameters

jobListener
Type: Quartz IJobListener

[Missing <param name="jobListener"/> documentation for "M:Quartz.IListenerManager.AddJobListener(Quartz.IJobListener,System.Collections.Generic.IList{Quartz.IMatcher{Quartz.JobKey}})"]

matchers
Type: System.Collections.Generic IList IMatcher JobKey  

[Missing <param name="matchers"/> documentation for "M:Quartz.IListenerManager.AddJobListener(Quartz.IJobListener,System.Collections.Generic.IList{Quartz.IMatcher{Quartz.JobKey}})"]

Remarks

If no matchers are provided, the EverythingMatcher TKey  will be used.
See Also