Figure 4: Subscribing to and publishing a publication

ASubject s; // inherits from Subject
s.createPublication("PUBNAME");
ConcreteObserver o; // inherits from
                    // Observer
o.subscribe("PUBNAME");
s.publish("PUBNAME"); // triggers a call
                      // to o.update