Package org.jgroups.demo.tankwar.model

Examples of org.jgroups.demo.tankwar.model.TankView


    if(logger.isDebugEnabled()) {
      logger.debug("handle message, " + msg.printHeaders() + " | " + msg.getSrc()  + " | "  + msg.getObject()) ;
    }
   
    Session session = (Session) msg.getObject();
    TankView view = session.tankView();
    if(view.isLive()){
      Tank tank = tankMap.get(view.getId());
      if(null == tank) {
        tankMap.put(view.getId(), new Tank(view));
      } else {
        tank.updateTank(view);
      }
    } else {
      tankMap.remove(view.getId());
    }
   
  }
View Full Code Here

TOP

Related Classes of org.jgroups.demo.tankwar.model.TankView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.