Max Ekman

Results 135 comments of Max Ekman

@dtravin FYI, added this as an issue from our mail conversation.

Yes, if the underlying storage is not responding for example. Remember that the projections could use a different storage than the event store, and as @bweston92 noted there could even...

That was actually how it worked in the very beginning. Take a look at https://github.com/looplab/eventhorizon/commit/0a6fc3435ba4a8287642ec439a0857045b3be2a3. It could be nice to add back a CommandHandler that does that and I'm happy...

We opted to use the switch statements (in a current project) to get better compile time checking and to avoid the possible performance issues with using the reflect package.

Sounds like a neat way to go with the setup! I have not yet put much work into making the setup more semantic and I definitely think there are too...

@dtravin FYI, added this as an issue from our mail conversation.

I would have to look into it more closely. Basically it means that nothing is guaranteed by the EH core, just by each projection logic and/or storage.

@dtravin FYI, added this as an issue from our mail conversation.

Sounds like it could be a good example. Could you describe in more detail what you would like to highlight?

Basically you should never have a command that directly affects multiple aggregate roots. If you need that you should probably create a saga that issues one of the commands as...