BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
119 / 278 · Module 6 — Mule Routing and Orchestration · filtered: code← prev⊞ allnext →

6.25But don't over-fragment either

Bad Mule architecture can become:

flow
 ↓
subflow
 ↓
subflow
 ↓
subflow
 ↓
subflow

where each one contains one trivial component.

That's the equivalent of creating:

function getName() {
   return customer.name;
}

for everything.

Good decomposition follows meaningful responsibilities.