Click here to Skip to main content
15,894,410 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: Website design help Pin
dschumann13-Sep-11 15:20
dschumann13-Sep-11 15:20 
QuestionNeed help understanding how to initiate a Power OFF seq from BIos Pin
Member 390671822-Aug-11 15:10
Member 390671822-Aug-11 15:10 
AnswerRe: Need help understanding how to initiate a Power OFF seq from BIos Pin
Eddy Vluggen25-Aug-11 13:10
professionalEddy Vluggen25-Aug-11 13:10 
QuestionGood programming practice Pin
tamasu19-Aug-11 7:57
tamasu19-Aug-11 7:57 
AnswerRe: Good programming practice Pin
jschell21-Aug-11 11:03
jschell21-Aug-11 11:03 
QuestionDesign and Architecture is it a secret ?? why people keep hiding ?? Pin
capsulez17-Aug-11 13:08
capsulez17-Aug-11 13:08 
AnswerRe: Design and Architecture is it a secret ?? why people keep hiding ?? Pin
jschell18-Aug-11 12:54
jschell18-Aug-11 12:54 
QuestionIt's mediators all the way down. Pin
Leslie Sanford10-Aug-11 4:48
Leslie Sanford10-Aug-11 4:48 
I've been re-reading Arthur J. Riel's classic "Object-Oriented Design Heuristics."

One thing that I've found striking on this re-reading is how much Riel emphasizes the use of the mediator design pattern (though he doesn't refer to it as such). Specifically, it's heuristic 4.14:

"Objects which share lexical scope, should not have uses relationships between them."

What this means, basically, is that objects that exist at the same level of abstraction shouldn't be communicating with each other. Rather, they should be communicating with an object at a higher level of abstract which in turn takes the appropriate action and communicates any necessary info to the other objects at the lower level of abstraction, in other words, the mediator pattern.

(as an aside this heuristic conflicts somewhat with heuristic 4.13. Riel addresses this by suggesting the use of abstract classes, i.e. interfaces, as a means through which children communicate with their parents)

There are at least a couple of reasons for this heuristic. One, it promotes decoupling and reuse. If the objects at the same level of abstraction don't know about each other, they're more likely to be reuseable. Two, it lowers complexity. Instead of a many-to-many relationship between objects, you have a one-to-many, i.e. the mediator has a one-to-many relationship with its child objects. One-to-many relationships are easier to reason about and understand.

Following this heuristic, you can wind up with a layered approach in which each layer is made up of mediators. The child objects are in turn mediators to their child objects, and so on.

I like this idea in that it seems to strike a balance between a hyper object oriented approach in which objects are tangled together in a complex many-to-many web of connections and a strictly procedural approach in which nothing is connected. I'd never thought of mediator in this light before.
AnswerRe: It's mediators all the way down. Pin
Pete O'Hanlon10-Aug-11 4:53
mvePete O'Hanlon10-Aug-11 4:53 
AnswerRe: It's mediators all the way down. Pin
jschell10-Aug-11 9:59
jschell10-Aug-11 9:59 
QuestionGeneral Architecture query - SSIS / XML / BizTalk [modified] Pin
bgallagher_lib2-Aug-11 22:18
bgallagher_lib2-Aug-11 22:18 
AnswerRe: General Architecture query - SSIS / XML / BizTalk Pin
jschell3-Aug-11 10:16
jschell3-Aug-11 10:16 
GeneralRe: General Architecture query - SSIS / XML / BizTalk Pin
bgallagher_lib4-Aug-11 1:22
bgallagher_lib4-Aug-11 1:22 
GeneralRe: General Architecture query - SSIS / XML / BizTalk Pin
jschell4-Aug-11 8:16
jschell4-Aug-11 8:16 
AnswerRe: General Architecture query - SSIS / XML / BizTalk Pin
Mycroft Holmes4-Aug-11 3:05
professionalMycroft Holmes4-Aug-11 3:05 
GeneralRe: General Architecture query - SSIS / XML / BizTalk Pin
bgallagher_lib4-Aug-11 3:37
bgallagher_lib4-Aug-11 3:37 
GeneralRe: General Architecture query - SSIS / XML / BizTalk Pin
S Douglas25-Aug-11 15:28
professionalS Douglas25-Aug-11 15:28 
QuestionMaster / Detail Datasource design quesiton Pin
David Mujica12-Jul-11 10:47
David Mujica12-Jul-11 10:47 
AnswerRe: Master / Detail Datasource design quesiton Pin
jschell12-Jul-11 10:56
jschell12-Jul-11 10:56 
GeneralRe: Master / Detail Datasource design quesiton Pin
David Mujica13-Jul-11 3:29
David Mujica13-Jul-11 3:29 
GeneralRe: Master / Detail Datasource design quesiton Pin
jschell13-Jul-11 9:00
jschell13-Jul-11 9:00 
GeneralRe: Master / Detail Datasource design quesiton Pin
Mycroft Holmes4-Aug-11 3:13
professionalMycroft Holmes4-Aug-11 3:13 
GeneralRe: Master / Detail Datasource design quesiton Pin
may esguerra22-Aug-11 5:34
may esguerra22-Aug-11 5:34 
AnswerRe: Master / Detail Datasource design quesiton Pin
Nagy Vilmos2-Aug-11 22:41
professionalNagy Vilmos2-Aug-11 22:41 
GeneralThank you Pin
David Mujica3-Aug-11 5:18
David Mujica3-Aug-11 5:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.