siteName > > mediator
Threads
java ( 3666596 ) - com.iluwatar.me ( 3667142 ) stack: com.iluwatar.mediator.App.main(App.java:55) org.codehaus.mojo.exec.ExecJavaMojo.doMain(ExecJavaMojo.java:385) org.codehaus.mojo.exec.ExecJavaMojo.doExec(ExecJavaMojo.java:374) org.codehaus.mojo.exec.ExecJavaMojo.lambda$execute$0(ExecJavaMojo.java:296) java.base/java.lang.Thread.run(Thread.java:840)
/*
 * This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
 *
 * The MIT License
 * Copyright © 2014-2022 Ilkka Seppälä
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.iluwatar.mediator;

/**
 * The Mediator pattern defines an object that encapsulates how a set of objects interact. This
 * pattern is considered to be a behavioral pattern due to the way it can alter the program's
 * running behavior.
 *
 * <p>Usually a program is made up of a large number of classes. So the logic and computation is
 * distributed among these classes. However, as more classes are developed in a program, especially
 * during maintenance and/or refactoring, the problem of communication between these classes may
 * become more complex. This makes the program harder to read and maintain. Furthermore, it can
 * become difficult to change the program, since any change may affect code in several other
 * classes.
 *
 * <p>With the Mediator pattern, communication between objects is encapsulated with a mediator
 * object. Objects no longer communicate directly with each other, but instead communicate through
 * the mediator. This reduces the dependencies between communicating objects, thereby lowering the
 * coupling.
 *
 * <p>In this example the mediator encapsulates how a set of objects ({@link PartyMember})
 * interact. Instead of referring to each other directly they use the mediator ({@link Party})
 * interface.
 */
public class App {

  /**
   * Program entry point.
   *
   * @param args command line args
   */
  public static void main(String[] args) {

    // create party and members
    Party party = new PartyImpl();
    var hobbit = new Hobbit();
    var wizard = new Wizard();
    var rogue = new Rogue();
    var hunter = new Hunter();

    // add party members
    party.addMember(hobbit);
    party.addMember(wizard);
    party.addMember(rogue);
    party.addMember(hunter);

    // perform actions -> the other party members
    // are notified by the party
    hobbit.act(Action.ENEMY);
    wizard.act(Action.TALE);
    rogue.act(Action.GOLD);
    hunter.act(Action.HUNT);
  }
}
Variables All
No.FromNameValue
155args[Ljava.lang.String;@67784194
END 0 00
Output All Filter Merge
Process FilterThread Filter
3666596 java 3667142 com.iluwatar.me
No.PNPIDTIDTNTLMessage
1java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHobbit joins the party
2java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIWizard joins the party
3java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIRogue joins the party
4java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHunter joins the party
5java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHobbit spotted enemies
6java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIWizard runs for cover
7java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIRogue runs for cover
8java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHunter runs for cover
9java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIWizard tells a tale
10java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHobbit comes to listen
11java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIRogue comes to listen
12java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHunter comes to listen
13java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIRogue found gold
14java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHobbit takes his share of the gold
15java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIWizard takes his share of the gold
16java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHunter takes his share of the gold
17java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHunter hunted a rabbit
18java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIHobbit arrives for dinner
19java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIWizard arrives for dinner
20java36665963667142com.iluwatar.mecom.iluwatar.mediator.PartyMemberBaseIRogue arrives for dinner
END 0 0 0 0 0 00
Project:JavaDesignPatterns
Update:20240509
Commit:bf6456ba6
Source Code:mediator
BuildTool:Java17
Compiler:Java17
Runtime:Openjdk17
System:MySystemD
Kernel:Linux5.10.211
Cpu:Intel:Corei7-7700K
Machine:AwesomeMachine