• 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

a list of prime classes most used in real project ?

 
Ranch Hand
Posts: 798
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Java 1.5 add lots of classes in concurrency, but I am sure some of classes are NOT that commonly used in the real, regular programming. Can you provide a list of prime classes most used in real project ?

for me, countdownlatch will be one of them, in parallelism logic, that class will be very helpful to test if different conditions be met ...

Thanks.
 
Bartender
Posts: 4179
22
IntelliJ IDE Python Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Every project will have its own needs. For me, the ones I use most often would be Lock (ReentrantLock), Condition, and Semaphore. The ExecutorService (implementor as needed for the current situation) and Future are used a ton. I can't remember what I did before BlockingQueue and its implementors (specifically LinkedBlockingQueue most often). Other ones I use regularly would be ThreadFactory and the contents of java.util.concurrent.atomic.
 
reply
    Bookmark Topic Watch Topic
  • New Topic