Interface | Description |
---|---|
IObserver<T> |
Interface to guarantee independence of Observer and Subject
|
IPublishSubscribe<T> |
Publish/subscribe interface for the Observer pattern
|
ISubscribe<T> |
Basic subscribe interface for all applications which want to allow objects to
subscribe themselves to another object and be informed about changes
|
Class | Description |
---|---|
Subject<T> |
Base class for all Observer notification classes.
|