Package com.nhncorp.mods.socket.io.impl

Examples of com.nhncorp.mods.socket.io.impl.Room


  private void print(Map<String, Room> rooms) {
    System.out.println("===================== Rooms ===================");
    for(Map.Entry<String, Room> entry : rooms.entrySet()){
      System.out.println(entry.getKey());
      Room room  = entry.getValue();
      for(String client : room.values()) {
        System.out.println(client);
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.nhncorp.mods.socket.io.impl.Room

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.