• 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
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

required lock and unlock methods.

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From my understanding of threads the synchronized key word provides the locking mechanism. The SCJD assignment from SUN requires the implementation of the lock(int record) and unlock(int record). I have searched the web using google, the usenet news groups
using google groups, several java text books I have and this forum. I am looking for an example or tutorial that has java code demonstrating the concept the SCJD exam requires. Please point me to a tutorial, faq, or java source code that demonstrates this concept. Thank you in advance for your help.
Michael [email protected]
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Synchronized locks the object for the period of the method call. That is not a lock on the record while the user is using it to read then modify.
Have you searched on "lock" in this forum. It says you have, but there are a pleathora (Spelling?) of posts here that show you what the code can look like.
Basically you want to track which records the user has locked, and allow them to unlock the records that they have locked. While Synchronize keyword is used when you are calling the method, it doesn't relate to locking a record.
Mark
 
Watchya got in that poodle gun? Anything for me? Or this tiny ad?
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic