Namespace: PureMVC.Patterns.Notifier
Class TNotifier
System.TInterfacedObject
|
+-- PureMVC.Patterns.Notifier.TNotifier
All Implemented Interfaces: - INotifier
Direct Known Subclasses: - TCommand , TProxy , TMediator
public class TNotifier ( System.TInterfacedObject , INotifier )
Abstract- False
Sealed- False
Persistent- False
public Sub |
SendNotification(Name: string; Sender: TObject) Send an INotification |
public Sub |
SendNotification(Name: string; Sender: TObject; Body: TValue) Send an INotification |
public Sub |
SendNotification(Name: string; Sender: TObject; Body: TValue; Kind: TValue) Send an INotification |
SendNotification
public procedure SendNotification(Name: string; Sender: TObject)
Abstract- False
Reintroduce- False
Final- False
Virtual- False
Override- False
summary- Send an INotification
remarks- Keeps us from having to construct new notification instances in our implementation code
This method is thread safe
param- The name of the notiification to send
Class- False
SendNotification
public procedure SendNotification(Name: string; Sender: TObject; Body: TValue)
Abstract- False
Reintroduce- False
Final- False
Virtual- False
Override- False
summary- Send an INotification
remarks- Keeps us from having to construct new notification instances in our implementation code
This method is thread safe
param- The name of the notification to send
The body of the notification
Class- False
SendNotification
public procedure SendNotification(Name: string; Sender: TObject; Body: TValue; Kind: TValue)
Abstract- False
Reintroduce- False
Final- False
Virtual- False
Override- False
summary- Send an INotification
remarks- Keeps us from having to construct new notification instances in our implementation code
This method is thread safe
param- The name of the notification to send
The body of the notification
The kind of the notification
Class- False
to Interface INotifier
Client- TNotifier
Supplier- INotifier