tmenner
tmenner

Reputation: 1

Constraints on number of subflows?

(Asking on behalf of a client.) In Corda is there any issue with a flow initiating many (even hundreds) of subflows, for example updating many participants from a single flow? If not, what is considered the best practice when one main transaction needs to trigger many other transactions?

Upvotes: 0

Views: 39

Answers (1)

Joel
Joel

Reputation: 23140

Initiating many subflows within a flow is not an issue and will not affect performance.

Deciding whether to use many subflows or keep everything in a single flow is a matter of personal preference and readability.

Upvotes: 0

Related Questions