FilterAndBroadcastJobListener ClassQuartz.NET API Documentation
Holds a List of references to JobListener instances and broadcasts all events to them (in order) - if the event is not excluded via filtering (read on).
Inheritance Hierarchy

System Object
  Quartz.Listener FilterAndBroadcastJobListener

Namespace: Quartz.Listener
Assembly: Quartz (in Quartz.dll) Version: 1.0.3.3
Syntax

public class FilterAndBroadcastJobListener : IJobListener
Remarks

The broadcasting behavior of this listener to delegate listeners may be more convenient than registering all of the listeners directly with the Trigger, and provides the flexibility of easily changing which listeners get notified.

You may also register a number of Regular Expression patterns to match the events against. If one or more patterns are registered, the broadcast will only take place if the event applies to a job who's name/group matches one or more of the patterns.

See Also