Package cz.matfyz.aai.fantom.message

Examples of cz.matfyz.aai.fantom.message.MessageQuit


   *
   * @throws ServerException if there is a problem with sending the message.
   */
  protected void quit() throws ServerException {
    logger.info("Sending the 'quit' message to clients");
    Message msg = new MessageQuit();
    logger.debug("Sending the 'quit' message to detectives");
    detectiveClient.sendMessage(msg);
    logger.debug("Sending the 'quit' message to phantoms");
    phantomClient.sendMessage(msg);
    logger.debug("The message was sent");
View Full Code Here

TOP

Related Classes of cz.matfyz.aai.fantom.message.MessageQuit

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.