1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use ;
use Notification;
/// Defines NotifyContext identity
/// The definition for a PureMVC Observer.
///
/// In PureMVC, [Observer] implementors assume these responsibilities:
///
/// - Encapsulate the notification (callback) method of the interested object.
/// - Encapsulate the notification context (this) of the interested object.
/// - Provide methods for setting the interested object' notification method and context.
/// - Provide a method for notifying the interested object.
///
///
/// PureMVC does not rely upon underlying event
/// models such as the one provided with Flash.
///
/// The Observer Pattern as implemented within
/// PureMVC exists to support event driven communication
/// between the application and the actors of the MVC triad.
///
/// An Observer is an object that encapsulates information
/// about an interested object with a notification method that
/// should be called when an [Notification] is broadcast. The Observer then
/// acts as a proxy for notifying the interested object.
///
/// Observers can receive [Notification]'s by having their
/// [notify](Observer::notify) method invoked, passing
/// in an object implementing the [Notification] interface, such
/// as a subclass of [Notification].