Package | Description |
---|---|
org.axonframework.config | |
org.axonframework.eventhandling |
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus . |
Modifier and Type | Method and Description |
---|---|
<T extends EventProcessor> |
EventProcessingConfiguration.eventProcessor(String name)
Obtains Event Processor by name.
|
<T extends EventProcessor> |
EventProcessingConfiguration.eventProcessor(String name,
Class<T> expectedType)
Returns the Event Processor with the given
name , if present and of the given expectedType . |
<T extends EventProcessor> |
EventProcessingConfiguration.eventProcessorByProcessingGroup(String processingGroup)
Obtains Event Processor by processing group name.
|
<T extends EventProcessor> |
EventProcessingConfiguration.eventProcessorByProcessingGroup(String processingGroup,
Class<T> expectedType)
Returns the Event Processor by the given
processingGroup , if present and of the given expectedType . |
<T extends EventProcessor> |
EventHandlingConfiguration.getProcessor(String name)
Deprecated.
|
<T extends EventProcessor> |
EventHandlingConfiguration.getProcessor(String name,
Class<T> expectedType)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
EventProcessor |
EventProcessingConfiguration.EventProcessorBuilder.build(String name,
Configuration configuration,
EventHandlerInvoker eventHandlerInvoker)
Builds the event processor.
|
EventProcessor |
EventHandlingConfiguration.EventProcessorBuilder.createEventProcessor(Configuration configuration,
String name,
List<?> eventHandlers)
Deprecated.
Builder function for an Event Processor.
|
EventProcessor |
SagaConfiguration.getProcessor()
Returns the processor that processed events for the Saga in this Configuration.
|
Modifier and Type | Method and Description |
---|---|
Map<String,EventProcessor> |
EventProcessingConfiguration.eventProcessors()
Obtains all registered event processors.
|
List<EventProcessor> |
EventHandlingConfiguration.getProcessors()
Deprecated.
use
EventProcessingConfiguration.eventProcessors() instead |
Modifier and Type | Class and Description |
---|---|
class |
AbstractEventProcessor
Abstract implementation of an
EventProcessor . |
class |
SubscribingEventProcessor
Event processor implementation that
subscribes to the EventBus for
events. |
class |
TrackingEventProcessor
EventProcessor implementation that tracks events from a
StreamableMessageSource . |
Copyright © 2010–2018. All rights reserved.