BroadcastJobListener Class

Quartz.NET 3.0 API Documentation
Holds a List of references to JobListener instances and broadcasts all events to them (in order).
Inheritance Hierarchy

SystemObject
  Quartz.ListenerBroadcastJobListener

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

C#
public class BroadcastJobListener : IJobListener

The BroadcastJobListener type exposes the following members.

Constructors

  NameDescription
Public methodBroadcastJobListener(String)
Construct an instance with the given name.
Public methodBroadcastJobListener(String, ListIJobListener)
Construct an instance with the given name, and List of listeners.
Top
Properties

  NameDescription
Public propertyListeners
Public propertyName
Top
Methods

  NameDescription
Public methodAddListener
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodJobExecutionVetoed
Public methodJobToBeExecuted
Public methodJobWasExecuted
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemoveListener(String)
Public methodRemoveListener(IJobListener)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

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

See Also

Reference