|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AggregateFactory | |
---|---|
org.axonframework.commandhandling.disruptor | |
org.axonframework.contextsupport.spring | |
org.axonframework.eventsourcing | Classes related to event sourcing. |
org.axonframework.test | Classes in support of testing Axon based applications. |
Uses of AggregateFactory in org.axonframework.commandhandling.disruptor |
---|
Methods in org.axonframework.commandhandling.disruptor with parameters of type AggregateFactory | ||
---|---|---|
|
DisruptorCommandBus.createRepository(AggregateFactory<T> aggregateFactory)
Creates a repository instance for an Event Sourced aggregate that is created by the given aggregateFactory . |
|
|
DisruptorCommandBus.createRepository(AggregateFactory<T> aggregateFactory,
EventStreamDecorator decorator)
Creates a repository instance for an Event Sourced aggregate that is created by the given aggregateFactory . |
|
|
CommandHandlerInvoker.createRepository(AggregateFactory<T> aggregateFactory,
EventStreamDecorator decorator)
Create a repository instance for an aggregate created by the given aggregateFactory . |
Uses of AggregateFactory in org.axonframework.contextsupport.spring |
---|
Methods in org.axonframework.contextsupport.spring with parameters of type AggregateFactory | |
---|---|
void |
DisruptorRepositoryBeanDefinitionParser.RepositoryFactoryBean.setAggregateFactory(AggregateFactory<? extends EventSourcedAggregateRoot> factory)
Sets the aggregate factory used to create instances for the repository to create. |
Uses of AggregateFactory in org.axonframework.eventsourcing |
---|
Classes in org.axonframework.eventsourcing that implement AggregateFactory | |
---|---|
class |
AbstractAggregateFactory<T extends EventSourcedAggregateRoot>
Abstract AggregateFactory implementation that is aware of snapshot events. |
class |
GenericAggregateFactory<T extends EventSourcedAggregateRoot>
Aggregate factory that uses a convention to create instances of aggregates. |
class |
SpringPrototypeAggregateFactory<T extends EventSourcedAggregateRoot>
AggregateFactory implementation that uses Spring prototype beans to create new uninitialized instances of Aggregates. |
Methods in org.axonframework.eventsourcing that return AggregateFactory | |
---|---|
AggregateFactory<T> |
EventSourcingRepository.getAggregateFactory()
Returns the factory used by this repository. |
Method parameters in org.axonframework.eventsourcing with type arguments of type AggregateFactory | |
---|---|
void |
SpringAggregateSnapshotter.setAggregateFactories(List<AggregateFactory<?>> aggregateFactories)
Optionally sets the aggregate factories to use. |
void |
AggregateSnapshotter.setAggregateFactories(List<AggregateFactory<?>> aggregateFactories)
Sets the aggregate factory to use. |
Constructors in org.axonframework.eventsourcing with parameters of type AggregateFactory | |
---|---|
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore)
Initializes a repository with a the given aggregateFactory and a pessimistic locking strategy. |
|
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore,
LockManager lockManager)
Initializes a repository with a the given aggregateFactory and a pessimistic locking strategy. |
|
EventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore)
Initializes a repository with the default locking strategy, using the given aggregateFactory to
create new aggregate instances. |
|
EventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore,
LockManager lockManager)
Initialize a repository with the given locking strategy. |
Uses of AggregateFactory in org.axonframework.test |
---|
Methods in org.axonframework.test with parameters of type AggregateFactory | |
---|---|
FixtureConfiguration<T> |
GivenWhenThenTestFixture.registerAggregateFactory(AggregateFactory<T> aggregateFactory)
|
FixtureConfiguration<T> |
FixtureConfiguration.registerAggregateFactory(AggregateFactory<T> aggregateFactory)
Registers the given aggregateFactory with the fixture. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |