SlideShare a Scribd company logo
Mediator Pattern
(A Behavioral Pattern)
Mediator
Motivation
 Object-oriented design encourages the distribution of
   behavior among objects. Such distribution can result in an
   object structure with many connections between objects;
   in the worst case, every object ends up knowing about
   every other.

 As an example, consider the implementation of dialog
   boxes in a graphical user interface. A dialog box uses a
   window to present a collection of widgets such as buttons,
   menus, and entry fields, as shown here:

 Often there are dependencies between the widgets in the
   dialog. For example, a button gets disabled when a certain
   entry field is empty. Selecting an entry in a list of choices
   called a list box might change the contents of an entry
   field. Conversely, typing text into the entry field might
   automatically select one or more corresponding entries in
   the list box. Once text appears in the entry field, other
   buttons may become enabled that let the user do
   something with the text, such as changing or deleting the
   thing to which it refers.
Motivation
 Different dialog boxes will have different dependencies between widgets. So
  even though dialogs display the same kinds of widgets, they can't simply reuse
  stock widget classes.

 You can avoid these problems by encapsulating collective behavior in a
  separate mediator object. A mediator is responsible for controlling and
  coordinating the interactions of a group of objects. The mediator serves as an
  intermediary that keeps objects in the group from referring to each other
  explicitly. The objects only know the mediator, thereby reducing the number
  of interconnections.

 For example, FontDialogDirector can be the mediator between the widgets
  in a dialog box. A FontDialogDirector object knows the widgets in a dialog and
  coordinates their interaction. It acts as a hub of communication for widgets.
Motivation
Motivation
 Here's the succession of events by which a list box's selection passes
  to an entry field:

    The list box tells its director that it's changed.
    The director gets the selection from the list box.
    The director passes the selection to the entry field.
    Now that the entry field contains some text, the director enables
     button(s) for initiating an action (e.g., "demibold," "oblique").

 Note how the director mediates between the list box and the entry
  field. Widgets communicate with each other only indirectly, through
  the director. They don't have to know about each other; all they know
  is the director. Furthermore, because the behavior is localized in one
  class, it can be changed or replaced by extending or replacing that
  class.
Motivation
 Here's how the FontDialogDirector abstraction can be integrated into a class library:




 DialogDirector is an abstract class that defines the overall behavior of a dialog. Clients
   call the ShowDialog operation to display the dialog on the screen. CreateWidgets is an
   abstract operation for creating the widgets of a dialog. WidgetChanged is another
   abstract operation; widgets call it to inform their director that they have changed.
   DialogDirector subclasses override CreateWidgets to create the proper widgets, and
   they override WidgetChanged to handle the changes.
Applicability
Use the Mediator pattern when

   a set of objects communicate in well-defined but complex ways.
    The resulting interdependencies are unstructured and difficult
    to understand.
   reusing an object is difficult because it refers to and
    communicates with many other objects.
   a behavior that's distributed between several classes should be
    customizable without a lot of subclassing.
Structure
Participants
Mediator (DialogDirector)
   defines an interface for communicating with Colleague objects.

ConcreteMediator (FontDialogDirector)
   implements cooperative behavior by coordinating Colleague
    objects.
   knows and maintains its colleagues.

Colleague classes (ListBox, EntryField)
   each Colleague class knows its Mediator object.
   each colleague communicates with its mediator whenever it would
    have otherwise communicated with another colleague.
Collaborations
Colleagues send and receive requests from
 a Mediator object. The mediator
 implements the cooperative behavior by
 routing requests between the appropriate
 colleague(s).
Consequences
 The Mediator pattern has the following benefits and drawbacks:

     It limits subclassing. A mediator localizes behavior that otherwise would be distributed
       among several objects. Changing this behavior requires subclassing Mediator only;
       Colleague classes can be reused as is.

     It decouples colleagues. A mediator promotes loose coupling between colleagues. You can
       vary and reuse Colleague and Mediator classes independently.

     It simplifies object protocols. A mediator replaces many-to-many interactions with one-
       to-many interactions between the mediator and its colleagues. One-to-many
       relationships are easier to understand, maintain, and extend.

     It abstracts how objects cooperate. Making mediation an independent concept and
       encapsulating it in an object lets you focus on how objects interact apart from their
       individual behavior. That can help clarify how objects interact in a system.

     It centralizes control. The Mediator pattern trades complexity of interaction for
       complexity in the mediator. Because a mediator encapsulates protocols, it can become
       more complex than any individual colleague. This can make the mediator itself a
       monolith that's hard to maintain.
Implementation
 The following implementation issues are relevant to the Mediator pattern:

    Omitting the abstract Mediator class. There's no need to define an abstract
      Mediator class when colleagues work with only one mediator. The abstract
      coupling that the Mediator class provides lets colleagues work with different
      Mediator subclasses, and vice versa.

    Colleague-Mediator communication. Colleagues have to communicate with
      their mediator when an event of interest occurs. One approach is to
      implement the Mediator as an Observer using the Observer pattern. Colleague
      classes act as Subjects, sending notifications to the mediator whenever they
      change state. The mediator responds by propagating the effects of the change
      to other colleagues.

    Another approach defines a specialized notification interface in Mediator that
      lets colleagues be more direct in their communication. Smalltalk/V for
      Windows uses a form of delegation: When communicating with the mediator,
      a colleague passes itself as an argument, allowing the mediator to identify the
      sender. The Sample Code uses this approach, and the Smalltalk/V
      implementation is discussed further in the Known Uses.
Sample Code
Sample Code
Sample Code
Assignment
 Develop a calendar application to remind us tasks to do. When a
  reminder triggers, it shows a notification alarm / popup. In the
  notification, we can select snooze or close. If we select snooze, then
  after a certain time span(15 Min) the alarm will notify us again. If we
  don’t respond to the notification in 30 seconds it automatically goes
  into snooze mode. The alarm automatically closes, if it goes into
  snooze mode for 3 times and logs the failure.

More Related Content

What's hot

Object oriented methodologies
Object oriented methodologiesObject oriented methodologies
Object oriented methodologies
naina-rani
 
Slide 4 Interaction Diagram
Slide 4 Interaction DiagramSlide 4 Interaction Diagram
Slide 4 Interaction Diagram
Niloy Rocker
 
Use case diagrams 2014
Use case diagrams 2014Use case diagrams 2014
Use case diagrams 2014
Inge Powell
 

What's hot (20)

Class diagrams
Class diagramsClass diagrams
Class diagrams
 
Advanced behavioral modeling chapter 4 of omd
Advanced behavioral modeling chapter 4 of omdAdvanced behavioral modeling chapter 4 of omd
Advanced behavioral modeling chapter 4 of omd
 
Adapter Design Pattern
Adapter Design PatternAdapter Design Pattern
Adapter Design Pattern
 
Object oriented methodologies
Object oriented methodologiesObject oriented methodologies
Object oriented methodologies
 
Slide 4 Interaction Diagram
Slide 4 Interaction DiagramSlide 4 Interaction Diagram
Slide 4 Interaction Diagram
 
Introduction to design patterns
Introduction to design patternsIntroduction to design patterns
Introduction to design patterns
 
Sequence diagram
Sequence diagramSequence diagram
Sequence diagram
 
Proxy Design Pattern
Proxy Design PatternProxy Design Pattern
Proxy Design Pattern
 
The Singleton Pattern Presentation
The Singleton Pattern PresentationThe Singleton Pattern Presentation
The Singleton Pattern Presentation
 
Bridge Design Pattern
Bridge Design PatternBridge Design Pattern
Bridge Design Pattern
 
Collaboration Diagram
Collaboration DiagramCollaboration Diagram
Collaboration Diagram
 
Gof design patterns
Gof design patternsGof design patterns
Gof design patterns
 
Creational pattern
Creational patternCreational pattern
Creational pattern
 
Communication diagram Introduction
Communication diagram IntroductionCommunication diagram Introduction
Communication diagram Introduction
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Chain of responsibility
Chain of responsibilityChain of responsibility
Chain of responsibility
 
Grasp
GraspGrasp
Grasp
 
Flyweight pattern
Flyweight patternFlyweight pattern
Flyweight pattern
 
UML Diagrams
UML DiagramsUML Diagrams
UML Diagrams
 
Use case diagrams 2014
Use case diagrams 2014Use case diagrams 2014
Use case diagrams 2014
 

Viewers also liked (12)

Mediator
MediatorMediator
Mediator
 
Mediator Pattern
Mediator PatternMediator Pattern
Mediator Pattern
 
Decorator design pattern (A Gift Wrapper)
Decorator design pattern (A Gift Wrapper)Decorator design pattern (A Gift Wrapper)
Decorator design pattern (A Gift Wrapper)
 
Memento pattern
Memento patternMemento pattern
Memento pattern
 
Facade pattern
Facade patternFacade pattern
Facade pattern
 
Algorithm
AlgorithmAlgorithm
Algorithm
 
The Decorator Pattern
The Decorator PatternThe Decorator Pattern
The Decorator Pattern
 
Observer pattern
Observer patternObserver pattern
Observer pattern
 
Observer Pattern
Observer PatternObserver Pattern
Observer Pattern
 
Observer pattern
Observer patternObserver pattern
Observer pattern
 
Creational Design Patterns
Creational Design PatternsCreational Design Patterns
Creational Design Patterns
 
Prototype pattern
Prototype patternPrototype pattern
Prototype pattern
 

Similar to Mediator pattern

Similar to Mediator pattern (20)

Software Design Patterns - An Overview
Software Design Patterns - An OverviewSoftware Design Patterns - An Overview
Software Design Patterns - An Overview
 
Design patterns
Design patternsDesign patterns
Design patterns
 
C# concepts
C# conceptsC# concepts
C# concepts
 
SAD05 - Encapsulation
SAD05 - EncapsulationSAD05 - Encapsulation
SAD05 - Encapsulation
 
Design Pattern Notes: Nagpur University
Design Pattern Notes: Nagpur UniversityDesign Pattern Notes: Nagpur University
Design Pattern Notes: Nagpur University
 
01. design pattern
01. design pattern01. design pattern
01. design pattern
 
Software Patterns
Software PatternsSoftware Patterns
Software Patterns
 
Architecture and design
Architecture and designArchitecture and design
Architecture and design
 
Introduction to UML
Introduction to UMLIntroduction to UML
Introduction to UML
 
Typescript design patterns applied to sharepoint framework - Sharepoint Satur...
Typescript design patterns applied to sharepoint framework - Sharepoint Satur...Typescript design patterns applied to sharepoint framework - Sharepoint Satur...
Typescript design patterns applied to sharepoint framework - Sharepoint Satur...
 
Basic design pattern interview questions
Basic design pattern interview questionsBasic design pattern interview questions
Basic design pattern interview questions
 
Sda 9
Sda   9Sda   9
Sda 9
 
Object Oriented Principles
Object Oriented PrinciplesObject Oriented Principles
Object Oriented Principles
 
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design PatternsNina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Review oop and ood
Review oop and oodReview oop and ood
Review oop and ood
 
Sda 7
Sda   7Sda   7
Sda 7
 
Design Principles to design Patterns
Design Principles to design PatternsDesign Principles to design Patterns
Design Principles to design Patterns
 
Mediator.pptx
Mediator.pptxMediator.pptx
Mediator.pptx
 
Software Design Patterns
Software Design PatternsSoftware Design Patterns
Software Design Patterns
 

More from Shakil Ahmed (14)

B-tree & R-tree
B-tree & R-treeB-tree & R-tree
B-tree & R-tree
 
Advanced data structure
Advanced data structureAdvanced data structure
Advanced data structure
 
Command pattern
Command patternCommand pattern
Command pattern
 
Bridge pattern
Bridge patternBridge pattern
Bridge pattern
 
Proxy pattern
Proxy patternProxy pattern
Proxy pattern
 
iOS 5
iOS 5iOS 5
iOS 5
 
Ios development
Ios developmentIos development
Ios development
 
Graph
GraphGraph
Graph
 
Lowest common ancestor
Lowest common ancestorLowest common ancestor
Lowest common ancestor
 
Segment tree
Segment treeSegment tree
Segment tree
 
Tree & bst
Tree & bstTree & bst
Tree & bst
 
Trie tree
Trie treeTrie tree
Trie tree
 
Dynamic programming
Dynamic programmingDynamic programming
Dynamic programming
 
Advanced Search Techniques
Advanced Search TechniquesAdvanced Search Techniques
Advanced Search Techniques
 

Recently uploaded

Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 

Recently uploaded (20)

Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
Application of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matricesApplication of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matrices
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxSolid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Advances in production technology of Grapes.pdf
Advances in production technology of Grapes.pdfAdvances in production technology of Grapes.pdf
Advances in production technology of Grapes.pdf
 
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & EngineeringBasic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
 

Mediator pattern

  • 3. Motivation  Object-oriented design encourages the distribution of behavior among objects. Such distribution can result in an object structure with many connections between objects; in the worst case, every object ends up knowing about every other.  As an example, consider the implementation of dialog boxes in a graphical user interface. A dialog box uses a window to present a collection of widgets such as buttons, menus, and entry fields, as shown here:  Often there are dependencies between the widgets in the dialog. For example, a button gets disabled when a certain entry field is empty. Selecting an entry in a list of choices called a list box might change the contents of an entry field. Conversely, typing text into the entry field might automatically select one or more corresponding entries in the list box. Once text appears in the entry field, other buttons may become enabled that let the user do something with the text, such as changing or deleting the thing to which it refers.
  • 4. Motivation  Different dialog boxes will have different dependencies between widgets. So even though dialogs display the same kinds of widgets, they can't simply reuse stock widget classes.  You can avoid these problems by encapsulating collective behavior in a separate mediator object. A mediator is responsible for controlling and coordinating the interactions of a group of objects. The mediator serves as an intermediary that keeps objects in the group from referring to each other explicitly. The objects only know the mediator, thereby reducing the number of interconnections.  For example, FontDialogDirector can be the mediator between the widgets in a dialog box. A FontDialogDirector object knows the widgets in a dialog and coordinates their interaction. It acts as a hub of communication for widgets.
  • 6. Motivation  Here's the succession of events by which a list box's selection passes to an entry field:  The list box tells its director that it's changed.  The director gets the selection from the list box.  The director passes the selection to the entry field.  Now that the entry field contains some text, the director enables button(s) for initiating an action (e.g., "demibold," "oblique").  Note how the director mediates between the list box and the entry field. Widgets communicate with each other only indirectly, through the director. They don't have to know about each other; all they know is the director. Furthermore, because the behavior is localized in one class, it can be changed or replaced by extending or replacing that class.
  • 7. Motivation  Here's how the FontDialogDirector abstraction can be integrated into a class library:  DialogDirector is an abstract class that defines the overall behavior of a dialog. Clients call the ShowDialog operation to display the dialog on the screen. CreateWidgets is an abstract operation for creating the widgets of a dialog. WidgetChanged is another abstract operation; widgets call it to inform their director that they have changed. DialogDirector subclasses override CreateWidgets to create the proper widgets, and they override WidgetChanged to handle the changes.
  • 8. Applicability Use the Mediator pattern when  a set of objects communicate in well-defined but complex ways. The resulting interdependencies are unstructured and difficult to understand.  reusing an object is difficult because it refers to and communicates with many other objects.  a behavior that's distributed between several classes should be customizable without a lot of subclassing.
  • 10. Participants Mediator (DialogDirector)  defines an interface for communicating with Colleague objects. ConcreteMediator (FontDialogDirector)  implements cooperative behavior by coordinating Colleague objects.  knows and maintains its colleagues. Colleague classes (ListBox, EntryField)  each Colleague class knows its Mediator object.  each colleague communicates with its mediator whenever it would have otherwise communicated with another colleague.
  • 11. Collaborations Colleagues send and receive requests from a Mediator object. The mediator implements the cooperative behavior by routing requests between the appropriate colleague(s).
  • 12. Consequences  The Mediator pattern has the following benefits and drawbacks:  It limits subclassing. A mediator localizes behavior that otherwise would be distributed among several objects. Changing this behavior requires subclassing Mediator only; Colleague classes can be reused as is.  It decouples colleagues. A mediator promotes loose coupling between colleagues. You can vary and reuse Colleague and Mediator classes independently.  It simplifies object protocols. A mediator replaces many-to-many interactions with one- to-many interactions between the mediator and its colleagues. One-to-many relationships are easier to understand, maintain, and extend.  It abstracts how objects cooperate. Making mediation an independent concept and encapsulating it in an object lets you focus on how objects interact apart from their individual behavior. That can help clarify how objects interact in a system.  It centralizes control. The Mediator pattern trades complexity of interaction for complexity in the mediator. Because a mediator encapsulates protocols, it can become more complex than any individual colleague. This can make the mediator itself a monolith that's hard to maintain.
  • 13. Implementation  The following implementation issues are relevant to the Mediator pattern:  Omitting the abstract Mediator class. There's no need to define an abstract Mediator class when colleagues work with only one mediator. The abstract coupling that the Mediator class provides lets colleagues work with different Mediator subclasses, and vice versa.  Colleague-Mediator communication. Colleagues have to communicate with their mediator when an event of interest occurs. One approach is to implement the Mediator as an Observer using the Observer pattern. Colleague classes act as Subjects, sending notifications to the mediator whenever they change state. The mediator responds by propagating the effects of the change to other colleagues.  Another approach defines a specialized notification interface in Mediator that lets colleagues be more direct in their communication. Smalltalk/V for Windows uses a form of delegation: When communicating with the mediator, a colleague passes itself as an argument, allowing the mediator to identify the sender. The Sample Code uses this approach, and the Smalltalk/V implementation is discussed further in the Known Uses.
  • 17. Assignment  Develop a calendar application to remind us tasks to do. When a reminder triggers, it shows a notification alarm / popup. In the notification, we can select snooze or close. If we select snooze, then after a certain time span(15 Min) the alarm will notify us again. If we don’t respond to the notification in 30 seconds it automatically goes into snooze mode. The alarm automatically closes, if it goes into snooze mode for 3 times and logs the failure.