Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jangalinski/camunda-history-async

Async decoupling of Camunda history events
https://github.com/jangalinski/camunda-history-async

camunda extension history springboot

Last synced: 16 days ago
JSON representation

Async decoupling of Camunda history events

Awesome Lists containing this project

README

        

# camunda-history-async
Async decoupling of Camunda history events

## Idea

* register a HistoryEventHandler that just forwards HistoryEvents via ApplicationEventPublisher.
* implement a TransactionalEventListener that forwards the receided events to the DbHistoryEventHandler after the original transaction commits.

_not working so far_!

## Reproduce

* start the spring application
* open the h2-console in the browser (http://localhost:8080/h2-console , url: jdbc:h2:mem:camunda-history-async, user&pw:sa)
* query act_hi_actinst .... empty
* open cockpit (http://localhost:8080/, user&pw:admin)
* start process manually in tasklist
* check act_hi_actinst in h2 again ...

see