Is there any alternative to synchronize class or method without using 'synchronized' keyword in java ?
Thanks, Mallikarjun Kokatanur
|
Is there any alternative to synchronize class or method without using 'synchronized' keyword in java ? Thanks, Mallikarjun Kokatanur |
|||
|
|
|
You may want to look at the changes introduced with the concurrency package, to JDK 5. http://java.sun.com/developer/technicalArticles/J2SE/concurrency/ Here are some of what is in the article:
|
|||
|
|
|
You could use a "lockable" resource, such as a file. You can also look at java.util.concurrent.locks which has more sophisticated locking. Why don't you want to use synchronized? |
|||
|
|
|
check out |
|||
|
|