Class JdbcEventPublicationRepository
java.lang.Object
org.springframework.modulith.events.jdbc.JdbcEventPublicationRepository
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,EventPublicationRepository
class JdbcEventPublicationRepository
extends Object
implements EventPublicationRepository, BeanClassLoaderAware
JDBC-based repository to store
TargetEventPublications.- Author:
- Dmitry Belyaev, Björn Kieling, Oliver Drotbohm, Raed Ben Hamouda, Cora Iberkleid
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.modulith.events.core.EventPublicationRepository
EventPublicationRepository.FailedCriteria -
Constructor Summary
ConstructorsConstructorDescriptionJdbcEventPublicationRepository(JdbcOperations operations, EventSerializer serializer, JdbcRepositorySettings settings) Creates a newJdbcEventPublicationRepositoryfor the givenJdbcOperations,EventSerializer,DatabaseTypeandJdbcConfigurationProperties. -
Method Summary
Modifier and TypeMethodDescriptionintcountByStatus(EventPublication.Status status) Returns the number ofEventPublications for the given status.create(TargetEventPublication publication) Persists the givenTargetEventPublication.voidDeletes all publications that were already marked as completed.voiddeleteCompletedPublicationsBefore(Instant instant) Deletes all publication that were already marked as completed with a completion date before the given one.voiddeletePublications(List<UUID> identifiers) Deletes all publications with the given identifiers.findByStatus(EventPublication.Status status) Returns allTargetEventPublications with the givenEventPublication.Status.Returns all completed event publications currently found in the system.Returns allTargetEventPublications that have not been completed yet.findIncompletePublicationsByEventAndTargetIdentifier(Object event, PublicationTargetIdentifier targetIdentifier) Return the incompleteTargetEventPublicationfor the given serialized event and listener identifier.Returns allTargetEventPublications that have not been completed and were published before the givenInstant.voidmarkCompleted(Object event, PublicationTargetIdentifier identifier, Instant completionDate) Marks the publication for the given event andPublicationTargetIdentifierto be completed at the givenInstant.voidmarkCompleted(UUID identifier, Instant completionDate) Marks the publication with the given identifier completed at the givenInstant.voidsetBeanClassLoader(ClassLoader classLoader) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.modulith.events.core.EventPublicationRepository
findFailedPublications, markCompleted, markFailed, markProcessing, markResubmitted
-
Constructor Details
-
JdbcEventPublicationRepository
public JdbcEventPublicationRepository(JdbcOperations operations, EventSerializer serializer, JdbcRepositorySettings settings) Creates a newJdbcEventPublicationRepositoryfor the givenJdbcOperations,EventSerializer,DatabaseTypeandJdbcConfigurationProperties.- Parameters:
operations- must not be null.serializer- must not be null.settings- must not be null.
-
-
Method Details
-
setBeanClassLoader
- Specified by:
setBeanClassLoaderin interfaceBeanClassLoaderAware
-
create
Description copied from interface:EventPublicationRepositoryPersists the givenTargetEventPublication.- Specified by:
createin interfaceEventPublicationRepository- Parameters:
publication- must not be null.- Returns:
- will never be null.
-
markCompleted
@Transactional public void markCompleted(Object event, PublicationTargetIdentifier identifier, Instant completionDate) Description copied from interface:EventPublicationRepositoryMarks the publication for the given event andPublicationTargetIdentifierto be completed at the givenInstant.- Specified by:
markCompletedin interfaceEventPublicationRepository- Parameters:
event- must not be null.identifier- must not be null.completionDate- must not be null.- See Also:
-
markCompleted
Description copied from interface:EventPublicationRepositoryMarks the publication with the given identifier completed at the givenInstant.- Specified by:
markCompletedin interfaceEventPublicationRepository- Parameters:
identifier- must not be null.completionDate- must not be null.- See Also:
-
findIncompletePublicationsByEventAndTargetIdentifier
@Transactional(readOnly=true) public Optional<TargetEventPublication> findIncompletePublicationsByEventAndTargetIdentifier(Object event, PublicationTargetIdentifier targetIdentifier) Description copied from interface:EventPublicationRepositoryReturn the incompleteTargetEventPublicationfor the given serialized event and listener identifier.- Specified by:
findIncompletePublicationsByEventAndTargetIdentifierin interfaceEventPublicationRepository- Parameters:
event- must not be null.targetIdentifier- must not be null.- Returns:
- will never be null.
-
findCompletedPublications
Description copied from interface:EventPublicationRepositoryReturns all completed event publications currently found in the system.- Specified by:
findCompletedPublicationsin interfaceEventPublicationRepository- Returns:
- will never be null.
-
findIncompletePublications
Description copied from interface:EventPublicationRepositoryReturns allTargetEventPublications that have not been completed yet.- Specified by:
findIncompletePublicationsin interfaceEventPublicationRepository- Returns:
- will never be null.
-
findIncompletePublicationsPublishedBefore
Description copied from interface:EventPublicationRepositoryReturns allTargetEventPublications that have not been completed and were published before the givenInstant.- Specified by:
findIncompletePublicationsPublishedBeforein interfaceEventPublicationRepository- Parameters:
instant- must not be null.- Returns:
- will never be null.
-
deletePublications
Description copied from interface:EventPublicationRepositoryDeletes all publications with the given identifiers.- Specified by:
deletePublicationsin interfaceEventPublicationRepository- Parameters:
identifiers- must not be null.
-
deleteCompletedPublications
public void deleteCompletedPublications()Description copied from interface:EventPublicationRepositoryDeletes all publications that were already marked as completed.- Specified by:
deleteCompletedPublicationsin interfaceEventPublicationRepository
-
deleteCompletedPublicationsBefore
Description copied from interface:EventPublicationRepositoryDeletes all publication that were already marked as completed with a completion date before the given one.- Specified by:
deleteCompletedPublicationsBeforein interfaceEventPublicationRepository- Parameters:
instant- must not be null.
-
findByStatus
Description copied from interface:EventPublicationRepositoryReturns allTargetEventPublications with the givenEventPublication.Status.- Specified by:
findByStatusin interfaceEventPublicationRepository- Parameters:
status- must not be null.- Returns:
- will never be null.
-
countByStatus
Description copied from interface:EventPublicationRepositoryReturns the number ofEventPublications for the given status.- Specified by:
countByStatusin interfaceEventPublicationRepository- Parameters:
status- must not be null.- Returns:
- must not be negative
-