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
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");
> }
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) {
...
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
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