BLoC (Business Logic Component) Pattern

Initially Business Logic Component (BLoC) pattern was introduced by Google as a solution to handle states in Flutter applications. It allows you to reduce the workload on UI components by separating the business logic from them. Over time, other frameworks also started to support the BLoC pattern – see e.g. how to use the BLoC pattern with React. It brings many benefits of business logic externalization: Flexibility to update application logic, Reuse logic, Ease of testing, Scalability. It is only natural to implement the BLoC pattern using a rule engine and additionally move control over business logic from programmers to subject matter experts. Link

This entry was posted in Decision Modeling. Bookmark the permalink.

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s