Package connectionLayer

Examples of connectionLayer.VirtuClassClientChat$VirtuClassClientChatData


  }

  @Override
  public void run() {
    System.out.println("Im chatting !!");
    new Thread(new VirtuClassClientChat(this));   
  }
View Full Code Here


      writeMediator.start();
     
      c = new ClassroomManager(waitingMessagesToBeWritten);
     
      ClassroomsListMediator m = new ClassroomsListMediator(readMediator.getClassroomsChooserQueue(),writeMediator.getClassroomsChooserQueue());
      chat = new VirtuClassClientChat(waitingMessagesToBeRead,waitingMessagesToBeWritten);
      chat.start();
      ClassroomChooserFrame2 frame = new ClassroomChooserFrame2(m);
      m.setListChanger(frame.l);
      m.start();
      frame.setVisible(true);
View Full Code Here

TOP

Related Classes of connectionLayer.VirtuClassClientChat$VirtuClassClientChatData

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.