Hello!
I have a monolith app. And now, I want to migrate my business logic layer to camunda, but I can’t find any roadmap that describes how to split a lot of business logic to atomic, single responsibility activities.
I’ve finished refactoring of current business logic. Now, I have the 3 blocks:
- preparingBusinessLogicContext;
- businessLogic ( it uses context like a business model);
- execution(preparing general parameters and send messages into another system).
The main question is “Is these 3 blocks enough to moving on bpmn or I need to decompose it more?”
Thanks.