Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any alternative to synchronize class or method without using 'synchronized' keyword in java ?

Thanks, Mallikarjun Kokatanur

share|improve this question

3 Answers

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:

  • Semaphore: A classic concurrency tool
  • CyclicBarrier: A resettable multiway synchronization point (useful for parallel programming)
  • CountDownLatch: A utility for blocking until a given number of signals, events, or conditions hold
  • Exchanger: Allows two threads to exchange objects at a rendezvous point, and can be useful in pipeline designs
share|improve this answer

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?

share|improve this answer

check out Lock classes from java.util.concurrent.locks package, which can be more flexible than sychronized methods

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.