Package | Description |
---|---|
org.axonframework.commandhandling.disruptor | |
org.axonframework.contextsupport.spring | |
org.axonframework.eventsourcing |
Classes related to event sourcing.
|
Modifier and Type | Method and Description |
---|---|
<T extends EventSourcedAggregateRoot> |
DisruptorCommandBus.createRepository(AggregateFactory<T> aggregateFactory,
EventStreamDecorator decorator)
Creates a repository instance for an Event Sourced aggregate that is created by the given
aggregateFactory . |
<T extends EventSourcedAggregateRoot> |
CommandHandlerInvoker.createRepository(AggregateFactory<T> aggregateFactory,
EventStreamDecorator decorator)
Create a repository instance for an aggregate created by the given
aggregateFactory . |
void |
DisruptorUnitOfWork.setEventStreamDecorator(EventStreamDecorator eventStreamDecorator)
Registers the EventStreamDecorator for events as part of this unit of work
|
Modifier and Type | Method and Description |
---|---|
void |
DisruptorCommandBusBeanDefinitionParser.RepositoryFactoryBean.setEventStreamDecorators(List<EventStreamDecorator> decorators)
Sets the (additional) decorators to use when loading and storing events from/to the Event Store.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SnapshotterTrigger
Interface for
Event Stream Decorators that have the
intent to trigger snapshots. |
Modifier and Type | Class and Description |
---|---|
class |
CompositeEventStreamDecorator
EventStreamDecorator implementation that delegates to several other decorator instances.
|
class |
EventCountSnapshotterTrigger
Snapshotter trigger mechanism that counts the number of events to decide when to create a snapshot.
|
Modifier and Type | Method and Description |
---|---|
void |
EventSourcingRepository.setEventStreamDecorators(List<? extends EventStreamDecorator> eventProcessors)
Sets the Event Stream Decorators that will process the event in the DomainEventStream when read, or written to
the event store.
|
Constructor and Description |
---|
CompositeEventStreamDecorator(Collection<EventStreamDecorator> eventStreamDecorators)
Initialize the decorator, delegating to the given
eventStreamDecorators . |
Copyright © 2010-2014. All Rights Reserved.