Set up event handlers to handle events from the ring buffer. These handlers will process events as soon as they become available, in parallel.
This method can be used as the start of a chain. For example if the handler A
must process events before handler B
:
dw.handleEventsWith(A).then(B);
@param handlers the event handlers that will process events.
@return a {@link EventHandlerGroup} that can be used to chain dependencies.
|
|
|
|