Package de.nameless.gameEngine.system.lan.messages

Examples of de.nameless.gameEngine.system.lan.messages.NEGreatingMessage


    this.userName = userName;
    incomming = new LinkedList<NEMessage>();

    try {
      out = new ObjectOutputStream(s.getOutputStream());
      out.writeObject(new NEGreatingMessage(userName));

    } catch (IOException e) {
      e.printStackTrace();
    }
    openCannel();
View Full Code Here


   */
  private void openCannel() {

    try {
      this.in = new ObjectInputStream(s.getInputStream());
      NEGreatingMessage g = (NEGreatingMessage) in.readObject();
      this.contactName = g.username;
    } catch (IOException e) {
      e.printStackTrace();
    } catch (ClassNotFoundException e) {
      e.printStackTrace();
View Full Code Here

TOP

Related Classes of de.nameless.gameEngine.system.lan.messages.NEGreatingMessage

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.