Jeff Moore schrieb:
> The problem with the Observer interface is that any class implementing
> it is only capable of receiving one kind of notification (update) and
> there is no capability to send any additional information.
> 
> The problem with the Subject interface is that it can also only support
> one kind of observer.

 You can extend the interfaces

   interface MySubject extends Subject {
   }

   interface MyObserver extends Observer {
   }

 and adapt them to your needs while retaining the possibility to use them
 with other code that only knows about the original Subject and Observer
 interfaces.

-- 
Sebastian Bergmann                      http://www.sebastian-bergmann.de/
GnuPG Key: 0xB85B5D69 / 27A7 2B14 09E4 98CD 6277 0E5B 6867 C514 B85B 5D69

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to