Re: [Fornax-developer] New sculptor event mechanism

2010-07-04 Thread Patrik Nordwall
I have written documentation in wiki. Not totally complete yet, but please review it: http://fornax.itemis.de/confluence/x/FgBL /Patrik -- View this message in context: http://old.nabble.com/New-sculptor-event-mechanism-tp29024456s17564p29071258.html Sent from the Fornax-Platform mailing list a

Re: [Fornax-developer] New sculptor event mechanism

2010-06-30 Thread Patrik Nordwall
PaloT wrote: > > Hello, > can we move following code to BaseImpl: > @Autowired > @Qualifier("eventBus") > private EventBus eventBus; > > public ShippingCommandHandlerImpl() { > } > > public void receive(Event event) { > dispatch(this, event, "handle"); > }

Re: [Fornax-developer] New sculptor event mechanism

2010-06-30 Thread Pavel Tavoda
Hello, can we move following code to BaseImpl: @Autowired @Qualifier("eventBus") private EventBus eventBus; public ShippingCommandHandlerImpl() { } public void receive(Event event) { dispatch(this, event, "handle"); } public void handle(Object event) { ...

Re: [Fornax-developer] New sculptor event mechanism

2010-06-29 Thread Patrik Nordwall
PaloT wrote: > > Hi Patrik, > I was playing little bit with new mongo-shipping sample. I like the > concept a lot but we need to clean rough edges. > Thanks a lot for trying it and for your feedback. I'm very interested in your ideas. We need to keep it simple, at least for 1.9. I don't think

[Fornax-developer] New sculptor event mechanism

2010-06-29 Thread Pavel Tavoda
Hi Patrik, I was playing little bit with new mongo-shipping sample. I like the concept a lot but we need to clean rough edges. Separation of layers is tooo unclear. When programming something like this we have to separate layers. Maybe via separate project or something else (any idea?). When I'm pr