IListenerManager SetJobListenerMatchers Method Quartz.NET API Documentation
Set the set of Matchers for which the listener will receive events if ANY of the matchers match.

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

bool SetJobListenerMatchers(
	string listenerName,
	IList<IMatcher<JobKey>> matchers
)

Parameters

listenerName
Type: System String
the name of the listener to add the matcher to
matchers
Type: System.Collections.Generic IList IMatcher JobKey  
the matchers to apply for selecting events

Return Value

Type: Boolean
true if the given matcher was found and removed from the listener's list of matchers
Remarks

Removes any existing matchers for the identified listener!

See Also