Package org.jboss.remoting.samples.transporter.simple

Source Code of org.jboss.remoting.samples.transporter.simple.Server

/*    */ package org.jboss.remoting.samples.transporter.simple;
/*    */
/*    */ import org.jboss.remoting.transporter.TransporterServer;
/*    */
/*    */ public class Server
/*    */ {
/*    */   public static void main(String[] args)
/*    */     throws Exception
/*    */   {
/* 33 */     TransporterServer server = TransporterServer.createTransporterServer("socket://localhost:5400", new DateProcessorImpl(), DateProcessor.class.getName());
/* 34 */     Thread.sleep(10000L);
/* 35 */     server.stop();
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.remoting.samples.transporter.simple.Server
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.remoting.samples.transporter.simple.Server

TOP
Copyright © 2018 www.massapi.com. 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.