Bridge: Introduction
Get a brief introduction to the Bridge design pattern.
We'll cover the following...
The Bridge design pattern allows us to separate the business logic from a software component that controls or triggers this business logic. For example, we might have a user interface that has multiple buttons. Each button triggers some logic in the backend. The Bridge design pattern allows us to ...