eventuate-tram-core
eventuate-tram-core copied to clipboard
Transactional messaging for microservices
https://github.com/eventuate-tram/eventuate-tram-core/blob/d4c8fa98a715c03efb302e7c6a63c30edd888034/eventuate-tram-in-memory/build.gradle#L10-L11
# Currently * a command handler returns a reply message. * The command handler cannot be implemented using a command # Proposed: Support command handlers that * Return void *...
A notification is a command that does not have a reply.
[Slack discussion](https://eventuate-users.slack.com/archives/C3L9MNMQC/p1658474376460969) asked about Spring's `ReplyingKafkaTemplate` Perhaps it makes sense to have something analogous would be useful.
I try setup eventuate to use database generated IDs. When I debug eventuate core I found that eventuate didn't save message ID in header column but cdc-service use it to...
Is there a way to send messages with a time delay, or is there a workable alternative? Thanks a lot
Key points: * Each service should have its own schema * Each service could have its own DB instance but that is not mandatory * The easier option is for...
**To replicate the issue below are process:-** **We are connecting 3 services in Saga flow** while executing the saga we are facing some unhandled exceptions, which can't be handled by...
Hi @cer, @dartartem , I'm working on PoC using Tram Saga. ``` tram.core.version: 0.29.0.RELEASE tram.sagas.version: 0.18.0.RELEASE ``` I faced with the case when CommandDispatcher terminates consumer if message contains a...