With that number of threads/requests you'll almost certainly need a thread pool.
I don't think there is some "official" JBoss API exposed for this kind of stuff, but you could use as starting points: common/src/main/org.jboss.util.threadpool.BasicThreadPool.java This is a re-usable simple thread pool implementation. It is used, for example, by: naming/src/main/org/jnp/server/Main, NamingServer.java which is the embedded JNDI naming server running within JBoss. You'll need a basic undestanding of loading your own services in JBoss as MBeans, so read the 2nd chapter of the JBoss Documentation. Usually, there is a lot of useful information in the wiki, as well, eg: http://www.jboss.org/wiki/Wiki.jsp?page=FAQJBossJMX Good luck View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867567#3867567 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867567 ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
