SOLID Code with Emergent Design – The Other ISP
This is the 5th post on SOLID Code with Emergent Design.
Interface Segregation Principle
"Separate interfaces so callers are only dependent on what they actually use"
Or, more simply…
Avoid "fat" interfaces
This principle is about breaking down our interfaces to be highly cohesive. You might have a server that provides methods to a number of different clients as such:

If one client requires changes to the server methods it calls, you have to change the server. Since all clients depend on the server, the change impacts all of them and you risk a change that should be isolated to a single client having adverse impacts on all of the clients. In other words, the above design results in unwanted coupling between the clients.
This can be solved by creating client-specific interfaces that are limited to only those functions required by the client (see: adapter pattern). In this way, even when you have classes that are perhaps more complex or less cohesive then you’d like, you can at least isolate this complexity:

Learn more: The Interface Segregation Principle by Robert Martin














Pingback: Jefferson Penick
Pingback: Tu Muszar
Pingback: Belinda Bertelsen
Pingback: Paula Koning
Pingback: Andrew Asaro
Pingback: Ambrose Groesser
Pingback: Garfield Brabston
Pingback: Wynell Frazier
Pingback: Chin Dicicco