Just to be sure, can experts confirm that
java.util.concurrent.locks.Lock
and Doug Lea's original Sync
are basically the same thing but with different names.
- acquire vs lock
- release vs unlock
Thanks.
|
|
Just to be sure, can experts confirm that java.util.concurrent.locks.Lock and Doug Lea's original Sync are basically the same thing but with different names.
Thanks.
|
||
|
|
|
|
A ReentrantLock which implements Lock wraps a class called Sync. All were written by Doug Lea. I suggest you try to use the libraries in Java. |
||
|
|
|
|
For what it is worth, the source code for java.util.concurrent.locks.Lock lists Doug Lea as its author. Same goes for many other files in that package.
|
||
|