Uses of Interface
org.axonframework.domain.DomainEventStream

Packages that use DomainEventStream
org.axonframework.domain The domain components of the Axon Framework, mainly the Aggregates and Events. 
org.axonframework.eventsourcing Classes related to event sourcing. 
org.axonframework.eventstore Definitions and implementations of the Event store, the mechanism that can load event streams and append events to them. 
org.axonframework.eventstore.fs Package containing classes necessary to implement a FileSystem based implementation of the EventStore 
org.axonframework.eventstore.jpa JPA Implementation of the EventStore. 
org.axonframework.eventstore.mongo   
 

Uses of DomainEventStream in org.axonframework.domain
 

Classes in org.axonframework.domain that implement DomainEventStream
 class SimpleDomainEventStream
          Creates a DomainEventStream that streams the contents of a list.
 

Methods in org.axonframework.domain that return DomainEventStream
 DomainEventStream AggregateRoot.getUncommittedEvents()
          Returns a DomainEventStream to the events in the aggregate that have been raised since creation or the last commit.
 DomainEventStream AbstractJpaAggregateRoot.getUncommittedEvents()
          Returns a DomainEventStream to the events in the aggregate that have been raised since creation or the last commit.
 DomainEventStream AbstractAggregateRoot.getUncommittedEvents()
          Returns a DomainEventStream to the events in the aggregate that have been raised since creation or the last commit.
 

Uses of DomainEventStream in org.axonframework.eventsourcing
 

Methods in org.axonframework.eventsourcing that return DomainEventStream
 DomainEventStream EventStreamDecorator.decorateForAppend(String aggregateType, EventSourcedAggregateRoot aggregate, DomainEventStream eventStream)
          Called when an event stream is appended to the event store.
 DomainEventStream EventCountSnapshotterTrigger.decorateForAppend(String aggregateType, EventSourcedAggregateRoot aggregate, DomainEventStream eventStream)
           
 DomainEventStream EventStreamDecorator.decorateForRead(String aggregateType, AggregateIdentifier aggregateIdentifier, DomainEventStream eventStream)
          Called when an event stream is read from the event store.
 DomainEventStream EventCountSnapshotterTrigger.decorateForRead(String aggregateType, AggregateIdentifier aggregateIdentifier, DomainEventStream eventStream)
           
 

Methods in org.axonframework.eventsourcing with parameters of type DomainEventStream
protected  DomainEvent AggregateSnapshotter.createSnapshot(String typeIdentifier, DomainEventStream eventStream)
           
protected abstract  DomainEvent AbstractSnapshotter.createSnapshot(String typeIdentifier, DomainEventStream eventStream)
          Creates a snapshot event for an aggregate of the given typeIdentifier of which passed events are available in the given eventStream.
 DomainEventStream EventStreamDecorator.decorateForAppend(String aggregateType, EventSourcedAggregateRoot aggregate, DomainEventStream eventStream)
          Called when an event stream is appended to the event store.
 DomainEventStream EventCountSnapshotterTrigger.decorateForAppend(String aggregateType, EventSourcedAggregateRoot aggregate, DomainEventStream eventStream)
           
 DomainEventStream EventStreamDecorator.decorateForRead(String aggregateType, AggregateIdentifier aggregateIdentifier, DomainEventStream eventStream)
          Called when an event stream is read from the event store.
 DomainEventStream EventCountSnapshotterTrigger.decorateForRead(String aggregateType, AggregateIdentifier aggregateIdentifier, DomainEventStream eventStream)
           
 void EventSourcedAggregateRoot.initializeState(DomainEventStream domainEventStream)
          Initialize the state of this aggregate using the events in the provided DomainEventStream.
 void AbstractEventSourcedAggregateRoot.initializeState(DomainEventStream domainEventStream)
          Initialize the state of this aggregate using the events in the provided DomainEventStream.
 

Uses of DomainEventStream in org.axonframework.eventstore
 

Methods in org.axonframework.eventstore that return DomainEventStream
 DomainEventStream EventStore.readEvents(String type, AggregateIdentifier identifier)
          Read the events of the aggregate identified by the given type and identifier that allow the current aggregate state to be rebuilt.
 

Methods in org.axonframework.eventstore with parameters of type DomainEventStream
 void EventStore.appendEvents(String type, DomainEventStream events)
          Append the events in the given stream to the event store.
 

Uses of DomainEventStream in org.axonframework.eventstore.fs
 

Methods in org.axonframework.eventstore.fs that return DomainEventStream
 DomainEventStream FileSystemEventStore.readEvents(String type, AggregateIdentifier identifier)
          Read the events of the aggregate identified by the given type and identifier that allow the current aggregate state to be rebuilt.
 

Methods in org.axonframework.eventstore.fs with parameters of type DomainEventStream
 void FileSystemEventStore.appendEvents(String type, DomainEventStream eventsToStore)
          Append the events in the given stream to the event store.
 

Uses of DomainEventStream in org.axonframework.eventstore.jpa
 

Methods in org.axonframework.eventstore.jpa that return DomainEventStream
 DomainEventStream JpaEventStore.readEvents(String type, AggregateIdentifier identifier)
          Read the events of the aggregate identified by the given type and identifier that allow the current aggregate state to be rebuilt.
 DomainEventStream JpaEventStore.readEventSegment(String type, AggregateIdentifier identifier, long firstSequenceNumber)
          Reads a segment of the events of an aggregate.
 

Methods in org.axonframework.eventstore.jpa with parameters of type DomainEventStream
 void JpaEventStore.appendEvents(String type, DomainEventStream events)
          Append the events in the given stream to the event store.
 

Uses of DomainEventStream in org.axonframework.eventstore.mongo
 

Methods in org.axonframework.eventstore.mongo that return DomainEventStream
 DomainEventStream MongoEventStore.readEvents(String type, AggregateIdentifier identifier)
           
 

Methods in org.axonframework.eventstore.mongo with parameters of type DomainEventStream
 void MongoEventStore.appendEvents(String type, DomainEventStream events)
           
 



Copyright © 2011. All Rights Reserved.