-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6e108d
commit 41a81c1
Showing
305 changed files
with
12,606 additions
and
9,158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
# esc-api | ||
|
||
Defines the event store commons API. | ||
|
||
| Interface (Synchronous) | Description | | ||
|:------------------------|:------------| | ||
| [ReadableEventStore](src/main/java/org/fuin/esc/api/ReadableEventStore.java) | Read only functionality | | ||
| [WritableEventStore](src/main/java/org/fuin/esc/api/WritableEventStore.java) | Write Only functionality | | ||
| [EventStore](src/main/java/org/fuin/esc/api/EventStore.java) | Combined read and write functionality | | ||
| [SubscribableEventStore](src/main/java/org/fuin/esc/api/SubscribableEventStore.java) | Handles volatile subscriptions | | ||
| Interface (Synchronous) | Description | | ||
|:-------------------------------------------------------------------------------------|:--------------------------------------| | ||
| [ReadableEventStore](src/main/java/org/fuin/esc/api/ReadableEventStore.java) | Read only functionality | | ||
| [WritableEventStore](src/main/java/org/fuin/esc/api/WritableEventStore.java) | Write Only functionality | | ||
| [EventStore](src/main/java/org/fuin/esc/api/EventStore.java) | Combined read and write functionality | | ||
| [SubscribableEventStore](src/main/java/org/fuin/esc/api/SubscribableEventStore.java) | Handles volatile subscriptions | | ||
|
||
| Interface (Asynchronous) | Description | | ||
|:-------------------------|:------------| | ||
| [ReadableEventStoreAsync](src/main/java/org/fuin/esc/api/ReadableEventStoreAsync.java) | Read only functionality | | ||
| [WritableEventStoreAsync](src/main/java/org/fuin/esc/api/WritableEventStoreAsync.java) | Write Only functionality | | ||
| [EventStoreAsync](src/main/java/org/fuin/esc/api/EventStoreAsync.java) | Combined read and write functionality | | ||
| [SubscribableEventStoreAsync](src/main/java/org/fuin/esc/api/SubscribableEventStoreAsync.java) | Handles volatile subscriptions | | ||
| Interface (Asynchronous) | Description | | ||
|:-----------------------------------------------------------------------------------------------|:--------------------------------------| | ||
| [ReadableEventStoreAsync](src/main/java/org/fuin/esc/api/ReadableEventStoreAsync.java) | Read only functionality | | ||
| [WritableEventStoreAsync](src/main/java/org/fuin/esc/api/WritableEventStoreAsync.java) | Write Only functionality | | ||
| [EventStoreAsync](src/main/java/org/fuin/esc/api/EventStoreAsync.java) | Combined read and write functionality | | ||
| [SubscribableEventStoreAsync](src/main/java/org/fuin/esc/api/SubscribableEventStoreAsync.java) | Handles volatile subscriptions | | ||
|
||
Simple delegating asynchronous event store that uses a synchronous one internally: [DelegatingAsyncEventStore](src/main/java/org/fuin/esc/api/DelegatingAsyncEventStore.java) | ||
Simple delegating asynchronous event store that uses a synchronous one | ||
internally: [DelegatingAsyncEventStore](src/main/java/org/fuin/esc/api/DelegatingAsyncEventStore.java) |
Oops, something went wrong.