Package | Description |
---|---|
org.axonframework.eventhandling |
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus . |
org.axonframework.eventhandling.pooled |
Modifier and Type | Class and Description |
---|---|
class |
AddedTrackerStatus
References a new
EventTrackerStatus which work just has started on. |
class |
RemovedTrackerStatus
References an
EventTrackerStatus which no active work is occurring on. |
class |
TrackerStatus
Implementation of the
EventTrackerStatus , providing simply modification methods to switch from one EventTrackerStatus value object to another. |
class |
WrappedTrackerStatus
Wrapper around an
EventTrackerStatus , delegating all calls to a delegate . |
Modifier and Type | Method and Description |
---|---|
Map<Integer,EventTrackerStatus> |
TrackingEventProcessor.processingStatus() |
Map<Integer,EventTrackerStatus> |
StreamingEventProcessor.processingStatus()
Returns the status for each of the segments processed by this processor as
EventTrackerStatus instances. |
Modifier and Type | Method and Description |
---|---|
default boolean |
EventTrackerStatus.isDifferent(EventTrackerStatus that)
|
default boolean |
EventTrackerStatus.isDifferent(EventTrackerStatus that,
boolean validatePositions)
|
default boolean |
EventTrackerStatus.matchPositions(EventTrackerStatus that)
Match the position fields of
this and that . |
default boolean |
EventTrackerStatus.matchStates(EventTrackerStatus that)
Match the boolean state fields of
this and that . |
Modifier and Type | Method and Description |
---|---|
void |
EventTrackerStatusChangeListener.onEventTrackerStatusChange(Map<Integer,EventTrackerStatus> updatedTrackerStatus)
Notification that an
EventTrackerStatus has changed. |
Constructor and Description |
---|
AddedTrackerStatus(EventTrackerStatus addedTrackerStatus)
Initializes the
AddedTrackerStatus using the given addedTrackerStatus . |
RemovedTrackerStatus(EventTrackerStatus removedTrackerStatus)
Initializes the
RemovedTrackerStatus using the given removedTrackerStatus . |
WrappedTrackerStatus(EventTrackerStatus delegate)
Initializes the
EventTrackerStatus using the given delegate . |
Modifier and Type | Method and Description |
---|---|
Map<Integer,EventTrackerStatus> |
PooledStreamingEventProcessor.processingStatus() |
Copyright © 2010–2022. All rights reserved.