[Python-Dev] Oberver Pattern

Fredrik Lundh fredrik@pythonware.com
Tue, 14 May 2002 18:21:22 +0200


Magnus wrote:

> Greg Ewing <greg@cosc.canterbury.ac.nz>:
> [snip]
> > This could be very useful for GUIs, too, for implementing
> > model-view relationships. The anygui people would be very
> > interested, I'm sure.
>=20
> Indeed!

have you actually built large-scale UI applications using a
one-size-fits-all observer model, or are you just guessing?

in real life, "something happened" is almost entirely useless,
and the other extreme "this and this and this and this and
this happened" isn't much better.  to get performance, you
need to think in data model terms...

</F>