Package org.jboss.demo.cluster.slsb

Examples of org.jboss.demo.cluster.slsb.StatelessSession.sendMessage()


    System.out.print( "Number of messages: " );
    Integer messageCount = Integer.valueOf( System.console().readLine() );
    System.out.print( "Delay in Milliseconds: " );
    Long processingDelay = Long.valueOf( System.console().readLine() );
    StatelessSession slsb = getStatelessSessionBean();
    slsb.sendMessage( message, messageCount, processingDelay );
  }
 
  private StatelessSession getStatelessSessionBean() throws NamingException {
    return (StatelessSession)context.lookup(SLSB_JNDI);
  }
View Full Code Here

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.