-
- All Implemented Interfaces:
public interface PublishedVersionStore
-
-
Method Summary
Modifier and Type Method Description abstract CompletableFuture<Integer>updatePublishedVersionAsync(String processorName, String aggregateRootTypeName, String aggregateRootId, Integer publishedVersion)Update the published version for the given aggregate. abstract CompletableFuture<Integer>getPublishedVersionAsync(String processorName, String aggregateRootTypeName, String aggregateRootId)Get the current published version for the given aggregate. -
-
Method Detail
-
updatePublishedVersionAsync
abstract CompletableFuture<Integer> updatePublishedVersionAsync(String processorName, String aggregateRootTypeName, String aggregateRootId, Integer publishedVersion)
Update the published version for the given aggregate.
-
getPublishedVersionAsync
abstract CompletableFuture<Integer> getPublishedVersionAsync(String processorName, String aggregateRootTypeName, String aggregateRootId)
Get the current published version for the given aggregate.
-
-
-
-