Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1]
1  Announcements and General Discussion / General Discussion / Re: Newbie Question - User - singleton? on: December 21, 2007, 01:24:21
I don't know if this is strictly related, but I use a ProxyHelper class which exposes Proxy instances for me as a convenience.  Then I can reduce:

var proxy:SomeProxy = facade.retrieveProxy(SomeProxy.NAME) as SomeProxy;

to

var proxy:SomeProxy = ProxyHelper.getSomeProxy();
2  Announcements and General Discussion / General Discussion / Re: Why not using Event System for the Delegates? on: December 21, 2007, 01:19:11
I would hazard a guess and say that this is for the same reason that PureMVC uses Notifications rather than Events - to remain completely platform agnostic.  The Event mechanism is a Flash/MX'ism and depending on it ties PureMVC down to a specific implementation.
Pages: [1]