forked from jen20/go-event-sourcing-sample
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* trigger a running projection to run * add more docs * TriggerSync / TriggerAsync on the projection group * TriggerAsync will return if other thread has filled the trigger channel * make projection error chan on Start * update readme * update readme * update readme * update readme * projection running state * projection running state as atomic.Bool * go version 1.19 * remove unused code * update readme * update README * update readme * update readme * projection trigger async test * return error if same projection is started multiple times * projections test trigger multiple async calls
- Loading branch information
Showing
5 changed files
with
253 additions
and
27 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,6 +1,6 @@ | ||
module github.com/hallgren/eventsourcing | ||
|
||
go 1.13 | ||
go 1.19 | ||
|
||
require github.com/hallgren/eventsourcing/core v0.4.0 | ||
|
||
|
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
Oops, something went wrong.