Uses of Class
com.reallifedeveloper.common.application.eventstore.EventStore
Packages that use EventStore
Package
Description
An implementation of an event store, i.e., a way to persist domain events.
Code to notify other systems about domain events that have occurred in this system and that have
been saved in an
EventStore
.-
Uses of EventStore in com.reallifedeveloper.common.application.eventstore
Constructors in com.reallifedeveloper.common.application.eventstore with parameters of type EventStoreModifierConstructorDescriptionEventStoringSubscriber
(EventStore eventStore) Creates a newEventStoringSubscriber
that uses the givenEventStore
. -
Uses of EventStore in com.reallifedeveloper.common.application.notification
Methods in com.reallifedeveloper.common.application.notification with parameters of type EventStoreModifier and TypeMethodDescriptionstatic NotificationFactory
NotificationFactory.instance
(EventStore eventStore) Gives an instance of the factory that uses the givenEventStore
to createNotifications
.Constructors in com.reallifedeveloper.common.application.notification with parameters of type EventStoreModifierConstructorDescriptionNotificationService
(EventStore eventStore, PublishedMessageTrackerRepository messageTrackerRepository, NotificationPublisher notificationPublisher) Creates a newNotificationService
that uses the given components.