• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

THREAD POOLING OPENSOURCE

 
Ranch Hand
Posts: 73
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Iam looking for a good Thread Pooling library, with JARS and documentation provided.

When I went to this site http://jakarta.apache.org/commons/sandbox/threadpool/

I could not find any JAR files. Also the documentation link does not work.

Can someone please help me out with this. I will appreciate it very much.

THanks And Regards

Mahesh
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sandbox projects are mainly project proposals that haven't yet produced a workable release.
That's why you find nothing there yet except project documents, it's still in its infancy.

Your best bet is probably to roll your own. I've found the Jakarta commons less than nice to use and most OS projects outside the Apache/Jakarta scope of low quality and/or dead.
 
Ranch Hand
Posts: 1646
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had great success with Doug Lea's tried-and-true Concurrent package's PooledExecutor. If you're using Java 1.5, this package was updated and included as java.util.concurrent (JSR166).
reply
    Bookmark Topic Watch Topic
  • New Topic