Mediator Mediator Intent Define an object that encapsulates how a - - PowerPoint PPT Presentation

mediator
SMART_READER_LITE
LIVE PREVIEW

Mediator Mediator Intent Define an object that encapsulates how a - - PowerPoint PPT Presentation

Mediator Mediator Intent Define an object that encapsulates how a set of objects interact. Mediator promotes loose coupling by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently.


slide-1
SLIDE 1

Mediator

slide-2
SLIDE 2

2

Mediator Intent Define an object that encapsulates how a set of

  • bjects interact. Mediator promotes loose coupling

by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently. (Behavioral)

slide-3
SLIDE 3

3

When objects in a subsystem interact, they often become tightly coupled.

When something happens here… When something happens here…

slide-4
SLIDE 4

4

Mediator lets you separate out the coordination behavior to one location.

Mediator

I had a state change.

  • OK. I will coordinate the

subsystem changes. I had a state change.

slide-5
SLIDE 5

5

The Mediator pattern has a very simple structure.

Colleague Mediator

ConcreteColleague1 ConcreteColleague2

ConcreteMediator

Set of objects

mediator

An object

Coordination behavior is all in here. 1 *

slide-6
SLIDE 6

6

The coordination activity all resides in the mediator relieving subsystem objects of this duty.

Colleague Mediator

ConcreteColleague1 ConcreteColleague2

ConcreteMediator mediator State change 1 *

slide-7
SLIDE 7

7

Controlling a bank of elevators is an application that could benefit from use of the Mediator pattern.

  • Set of objects
  • Elevators, floor buttons
  • Floor lobby call signals
  • Coordinating behaviors
  • Morning rush, lunch, evening
  • Weekday
  • Weekend
  • Emergency
slide-8
SLIDE 8

8

FloorLobby FloorLobby Elevator

You can mediate using the stock pattern with a little help from an observer.

ElevatorComponent ElevatorSequencing

FloorLobby

MorningRush LunchRush EveningRush Weekday Weekend Emergency

Observer Subject

mediator

Elevator Elevator

1 *

slide-9
SLIDE 9

9

FloorLobby FloorLobby Elevator

And maybe if you go up one layer, this is part of something too.

ElevatorComponent ElevatorSequencing

FloorLobby

MorningRush LunchRush EveningRush Weekday Weekend Emergency mediator

Elevator Elevator

ElevatorBank

carSequencer

Context Strategy

1 *