Package fr.cesi.chat.domain

Examples of fr.cesi.chat.domain.Event


  public void run() {
    // Envoie les utilisateurs
    while (true) {
      if(!evenements.isEmpty()){
        try {
          Event evenement = evenements.remove(0);
          // 1.1 Envoie directement la liste des utilisateurs
          out.writeObject(evenement);
        } catch (IOException e) {
          logger.error(e.getMessage());
          e.printStackTrace();
View Full Code Here

TOP

Related Classes of fr.cesi.chat.domain.Event

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.