• 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

Blocking Queue source code

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

I am using JDK1.4 and i would like to use BlockingQueue.

I tried in eclipse with JDK1.5, but still i am not able to see the source code.

If anybody knows where can i see the source, please let me know.


Thanking you

Regards,
Sashi
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you install the source when you installed your JDK? If so, the source is in your JDK directory in a src.zip file. You will need to unzip it and add it to your Eclipse configuration in order to view it.
You should be aware that java.util.concurrent.BlockingQueue is an interface, not a class, so I don't think the source will get you far. There are a number of concrete implementations that will probably be far more interesting (see the JDK docs).
 
reply
    Bookmark Topic Watch Topic
  • New Topic