Notifier

A Base INotifier implementation.
Namespace: PureMVC.Patterns.ObserverAssembly: PureMVC in (PureMVC.dll)

Syntax

C#
public class Notifier: INotifier

Remarks

MacroCommand, Command, Mediator and Proxy all have a need to send Notifications.

The INotifier interface provides a common method called sendNotification that relieves implementation code of the necessity to actually construct Notifications.

The Notifier class, which all of the above mentioned classes extend, provides an initialized reference to the FacadeSingleton, which is required for the convienience method for sending Notifications, but also eases implementation as these classes have frequent Facade interactions and usually require access to the facade anyway.

Constructors

Methods

Create and send an INotification.

Properties

Return the Singleton Facade instance

See also