Re: An Eventbus for Apache Flex applications

2013-03-08 Thread Frédéric THOMAS
ok ;-) -Message d'origine- From: Maurice Amsellem Sent: Friday, March 08, 2013 2:46 PM To: dev@flex.apache.org Subject: RE: An Eventbus for Apache Flex applications You are right, flex dev list is not the right place. We can follow this conversation privately, if you li

RE: An Eventbus for Apache Flex applications

2013-03-08 Thread Maurice Amsellem
ice Amsellem Sent: Friday, March 08, 2013 11:26 AM To: dev@flex.apache.org Subject: RE: An Eventbus for Apache Flex applications Hi Fred, I am not using modules in my app because the whole app functionality is required at startup (may I should :-) ) I am using hierarchical contexts for a very spe

Re: An Eventbus for Apache Flex applications

2013-03-08 Thread Frédéric THOMAS
y, March 08, 2013 11:26 AM To: dev@flex.apache.org Subject: RE: An Eventbus for Apache Flex applications Hi Fred, I am not using modules in my app because the whole app functionality is required at startup (may I should :-) ) I am using hierarchical contexts for a very specific use that I

RE: An Eventbus for Apache Flex applications

2013-03-08 Thread Maurice Amsellem
Envoyé : jeudi 7 mars 2013 17:44 À : dev@flex.apache.org Objet : Re: An Eventbus for Apache Flex applications Hi Maurice, Good to know, yes I was a bit scared about the reflexion-based injection, when you talk about Multiple hierarchical IOC contexts, do you mean, using modules ? -Fred -Messa

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Justin Mclean
Hi, > questions really is how to not tightly couple our components MXML/AS components that dispatch events (and event bubbling) works quite well for that. Justin

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Frédéric THOMAS
: dev@flex.apache.org Subject: RE: An Eventbus for Apache Flex applications Hi, I have developed a rather heavy mobile app using Parsley, which is running with very good performance. I am using all the features of Parsley ( Injection, Message/Event bus, Commands, Multiple hierarchical IOC contexts) and the i

RE: An Eventbus for Apache Flex applications

2013-03-07 Thread Maurice Amsellem
. Maurice -Message d'origine- De : Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Envoyé : jeudi 7 mars 2013 16:28 À : dev@flex.apache.org Objet : Re: An Eventbus for Apache Flex applications 100% true but I guess if you want a light weight app to run on mobile, you will vant to avoi

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Frédéric THOMAS
100% true but I guess if you want a light weight app to run on mobile, you will vant to avoid the weight of an IoC. -Fred -Message d'origine- From: Christophe Herreman Sent: Thursday, March 07, 2013 3:55 PM To: dev@flex.apache.org Subject: Re: An Eventbus for Apache Flex applica

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Christophe Herreman
From: John Cunliffe > Sent: Thursday, March 07, 2013 3:11 PM > To: dev@flex.apache.org > Subject: Re: An Eventbus for Apache Flex applications > > > I think Sebastian knows these frameworks like most flex developers. The > questions really is how to not tightly couple our compone

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Frédéric THOMAS
me else has a better solution. -Fred -Message d'origine- From: John Cunliffe Sent: Thursday, March 07, 2013 3:11 PM To: dev@flex.apache.org Subject: Re: An Eventbus for Apache Flex applications I think Sebastian knows these frameworks like most flex developers. The questions really is

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread John Cunliffe
newtriks.com/2011/08/12/example-as3-modular-application-using-robotlegs-signals/> > > -Message d'origine- From: Sebastian Mohr > Sent: Thursday, March 07, 2013 10:52 AM > To: dev@flex.apache.org > Subject: An Eventbus for Apache Flex applications > > Hi,

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Frédéric THOMAS
tion-using-robotlegs-signals/ -Message d'origine- From: Sebastian Mohr Sent: Thursday, March 07, 2013 10:52 AM To: dev@flex.apache.org Subject: An Eventbus for Apache Flex applications Hi, I am just building a mobile Flex application for a client of mine. I wonder if I could

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Harbs
I was not aware of that EventBus. It looks interesting. Here's how I've handled modules: The module is controlled by a mediator in the main app which handles all events. The module should implement an interface do it can be typed and remain decoupled. The mediator controls the module directly b

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Harbs
When I build apps without using a microarchitecture, I use a singleton which sends all events to the view (call it the main model). That singleton observes other singletons which handle various parts of the business logic. I tend to not use a controller at all and just make request commands "dir

Re: An Eventbus for Apache Flex applications

2013-03-07 Thread Carlos Velasco
Singletons and events work fine, but I usually prefer using a microarchitecture... Let's say... I like the order feeling of using a top level framework. At this time I am finishing a simplified architecture (I call it Uriana) based upon a resources and controller pattern which I think fits properl