How to synchronize method in java other than using synchronized keyword?
|
|
You could use the
See here. |
||||
|
|
|
Depends on you concrete needs. See Java concurrent package for higher level synchronization abstractions. Note that they may still use |
||||
|
|
|
you can use Lock classes provided in java.util.concurrent.locks package see http://download.oracle.com/javase/1.5.0/docs/api/index.html?java/util/concurrent/locks/Lock.html |
|||
|
|
|
You could also use @Synchronized from Project Lombok to generate a private field that will be used as the lock for your method. |
|||
|
|
|
That depends on what you're trying to do. Are you looking out of curiosity or is there a specific reason? If you are trying to speed up your multi-threaded methods, try synchronizing or locking around specific sections, or avoiding the threading issues altogether; make shared data BTW, the I'd recommend the the book 'Java Concurrency in Practice', by Brian Goetz. |
|||
|
|
|
You could use a synchronized block inside your method. This can be useful if you want two methods belonging to the same class to be synchronized separately.
Although in most cases this suggests that you should really break your class up. |
|||
|
|