NOX is described as supporting an asynchronous programming model. I'm trying
to understand what this means by considering the following scenarios:

Multiple components are registered to handle a single event. I understand
that this event will be passed sequentially to each component registered to
handle it in the order specified in nox.ml. The subsequent handler is only
called if the previous one returns CONTINUE. Alternatively, processes could
be forked to call all of this event's handlers simultaneously. However, this
latter option is not supported, correct?

Two events are queued, first event A and then B. Event A gets dispatched to
its first handler. When is Event B dispatched? Does NOX await completion of
Event A's processing?
_______________________________________________
nox-dev mailing list
[email protected]
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org

Reply via email to