• 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

Good article on usage of java.util.concurrent package

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

I am sure there must some post on article related to java.util.concurrent package. But if someone can point me to some good article on usages of new way of using threads using classes in java.util.concurrent package, I will be happy .

Thanks,
Gaurav.
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's not an article, but I can recommend you a very good book on the subject : Java Concurrency in Practice.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
+1 on that book. java.util.concurrent is too big and complex a package as to pick it up by reading articles, IMO; do yourself a favor and get the book (or the one by Oaks/Wong).
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://www.javamex.com/
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What kind of articles you are looking for Gaurav.?
Tutorials?
http://tutorials.jenkov.com/java-concurrency/index.html
http://www.javamex.com/tutorials/threads/
http://developerlife.com/tutorials/?p=23

Examples - Java thread Wait Notify example?
http://www.ooxs.be/EN/java/Threads%20in%20Java.html

Book - Java Concurrency + slides!
Take a look at the slides for very clear explanation on Java Concurrency!
http://www.doc.ic.ac.uk/~jnm/book/index.html
http://www.doc.ic.ac.uk/~jnm/book/firstbook/slides.html

Blog about Java Concurrency issues
http://jeremymanson.blogspot.com/

This website has a lots of references to Java and Threads
http://www.swtech.com/java/threads/

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The following article describes how to do concurrent programming with Java. It covers the concepts of parallel programming, immutability, threads, the executor framework (thread pools), futures, callables and the fork-join framework.

http://www.techproceed.com/2009/01/java-concurrency-multi-threading.html


 
Everybody's invited. Even this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic