EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,E>,E> |
EventProviderConfigurator.ProviderConfigurator.exceptionCallBack(ExceptionCallback ec)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,E>,E> |
EventProviderConfigurator.AsyncProviderConfigurator.exceptionCallBack(ExceptionCallback ec)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,E>,E> |
EventProviderConfigurator.ProviderConfigurator.exceptionCallBack(Supplier<ExceptionCallback> callBackSupplier)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,E>,E> |
EventProviderConfigurator.AsyncProviderConfigurator.exceptionCallBack(Supplier<ExceptionCallback> callBackSupplier)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,E>,E> |
EventProviderConfigurator.AsyncProviderConfigurator.executor(ExecutorService executor)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,E>,E> |
EventProviderConfigurator.AsyncProviderConfigurator.executor(Supplier<ExecutorService> executorSupplier)
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,E>,E> |
EventProviderConfigurator.ProviderConfigurator.synchronizeStore()
Instruct the provider to use the synchronized (thread-safe) version
of the configured store.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,E>,E> |
EventProviderConfigurator.AsyncProviderConfigurator.synchronizeStore()
Instruct the provider to use the synchronized (thread-safe) version
of the configured store.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,AWTEventProvider<S>>,AWTEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useAsynchronAWTEventProvider()
Configures an EventProvider which dispatches all events in
the AWT event thread.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,AsynchronousEventProvider<S>>,AsynchronousEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useAsynchronousProvider()
Configures an EventProvider which fires each event in a
different thread.
|
<C,E extends EventProvider<S>> EventProviderConfigurator.Chainable<C,E> |
EventProviderConfigurator.ProviderChooser.useCustomProvider(CustomConfigurator<S,C,E> configurator)
Entry point method for incorporating the fluent API to create custom
EventProvider instances.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.AsyncProviderConfigurator<S,ParallelEventProvider<S>>,ParallelEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useParallelProvider()
Configures an EventProvider which notifies each listener
within an own thread.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,SequentialEventProvider<S>>,SequentialEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useSynchronousProvider()
Configures a synchronous EventProvider which will dispatch all events
from within the thread in which its dispatch method was
called.
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,UnrollingEventProvider<S>>,UnrollingEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useUnrollingProvider()
|
EventProviderConfigurator.Chainable<EventProviderConfigurator.ProviderConfigurator<S,AWTEventProvider<S>>,AWTEventProvider<S>> |
EventProviderConfigurator.ProviderChooser.useWaitingAWTEventProvider()
Configures an EventProvider which dispatches all events in
the AWT event thread and waits (blocks current thread) after
dispatching until all listeners have been notified.
|