Package org.jboss.remoting.samples.chat.client

Examples of org.jboss.remoting.samples.chat.client.ChatMessage


   }

  
   protected void send(Object[] args) throws ShuttingDownException
   {
      ChatMessage mesg = (ChatMessage) args[0];
      shutDownGate.enter();
      ReadWriteArrayList messages = extendedChatInfo.getMessages();
      messages.add(mesg);
      shutDownGate.leave();
   }  
View Full Code Here


/*     */   }
/*     */
/*     */   protected void send(Object[] args)
/*     */     throws ShuttingDownException
/*     */   {
/* 121 */     ChatMessage mesg = (ChatMessage)args[0];
/* 122 */     this.shutDownGate.enter();
/* 123 */     ReadWriteArrayList messages = this.extendedChatInfo.getMessages();
/* 124 */     messages.add(mesg);
/* 125 */     this.shutDownGate.leave();
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.remoting.samples.chat.client.ChatMessage

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.