Uses of Interface
org.axonframework.eventhandling.EventProcessor
Packages that use EventProcessor
Package
Description
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus.-
Uses of EventProcessor in org.axonframework.axonserver.connector.processor
Methods in org.axonframework.axonserver.connector.processor with parameters of type EventProcessorModifier and TypeMethodDescriptionprotected Supplier<io.axoniq.axonserver.grpc.control.EventProcessorInfo> EventProcessorControlService.infoSupplier(EventProcessor processor) Constructs anEventProcessorInfofor the givenprocessor.Constructors in org.axonframework.axonserver.connector.processor with parameters of type EventProcessorModifierConstructorDescriptionAxonProcessorInstructionHandler(EventProcessor processor, String name) -
Uses of EventProcessor in org.axonframework.config
Fields in org.axonframework.config with type parameters of type EventProcessorModifier and TypeFieldDescriptionprotected final Map<String, Component<EventProcessor>> EventProcessingModule.eventProcessorsMethods in org.axonframework.config with type parameters of type EventProcessorModifier and TypeMethodDescriptiondefault <T extends EventProcessor>
Optional<T> EventProcessingConfiguration.eventProcessor(String name) Obtains anEventProcessorthrough the givenname.default <T extends EventProcessor>
Optional<T> EventProcessingConfiguration.eventProcessor(String name, Class<T> expectedType) <T extends EventProcessor>
TSagaConfiguration.eventProcessor()Gets theEventProcessorresponsible for delivering events to this Saga.<T extends EventProcessor>
Optional<T> EventProcessingConfiguration.eventProcessorByProcessingGroup(String processingGroup) Obtains anEventProcessorby it'sprocessingGroup.default <T extends EventProcessor>
Optional<T> EventProcessingConfiguration.eventProcessorByProcessingGroup(String processingGroup, Class<T> expectedType) <T extends EventProcessor>
Optional<T> EventProcessingModule.eventProcessorByProcessingGroup(String processingGroup) default <T extends EventProcessor>
Optional<T> EventProcessingConfiguration.sagaEventProcessor(Class<?> sagaType) Obtains an SagaEventProcessorimplementation for the givensagaType.Methods in org.axonframework.config that return EventProcessorModifier and TypeMethodDescriptionEventProcessingConfigurer.EventProcessorBuilder.build(String name, Configuration configuration, EventHandlerInvoker eventHandlerInvoker) protected EventProcessorEventProcessingModule.pooledStreamingEventProcessor(String name, EventHandlerInvoker eventHandlerInvoker, Configuration config, StreamableMessageSource<TrackedEventMessage<?>> messageSource, EventProcessingConfigurer.PooledStreamingProcessorConfiguration processorConfiguration) DefaultPooledStreamingEventProcessorconfiguration based on this configure module.protected EventProcessorEventProcessingModule.subscribingEventProcessor(String name, EventHandlerInvoker eventHandlerInvoker, SubscribableMessageSource<? extends EventMessage<?>> messageSource) DefaultSubscribingEventProcessorconfiguration based on this configure module.protected EventProcessorEventProcessingModule.trackingEventProcessor(String name, EventHandlerInvoker eventHandlerInvoker, TrackingEventProcessorConfiguration config, StreamableMessageSource<TrackedEventMessage<?>> source) DefaultTrackingEventProcessorconfiguration based on this configure module.Methods in org.axonframework.config that return types with arguments of type EventProcessorModifier and TypeMethodDescriptionEventProcessingConfiguration.eventProcessors()Obtains all registeredEventProcessors.EventProcessingModule.eventProcessors() -
Uses of EventProcessor in org.axonframework.eventhandling
Subinterfaces of EventProcessor in org.axonframework.eventhandlingModifier and TypeInterfaceDescriptioninterfaceAnEventProcessorwhich processes an event stream in segments.Classes in org.axonframework.eventhandling that implement EventProcessorModifier and TypeClassDescriptionclassAbstract implementation of anEventProcessor.classEvent processor implementation thatsubscribesto theEventBusfor events.classEventProcessor implementation that tracks events from aStreamableMessageSource. -
Uses of EventProcessor in org.axonframework.eventhandling.pooled
Classes in org.axonframework.eventhandling.pooled that implement EventProcessorModifier and TypeClassDescriptionclassAStreamingEventProcessorimplementation which pools its resources to enhance processing speed.