Interface LockFactory
-
- All Known Subinterfaces:
ClusterManager
- All Known Implementing Classes:
HazelcastClusterManager
@Deprecated public interface LockFactory
Deprecated.since 5.6. UseClusterLockService
for lockingInterface for obtaining locks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Lock
getLock(String name)
Deprecated.Get a lock -- getting the lock does *not* imply that it has been acquired.
-
-
-
Method Detail
-
getLock
Lock getLock(String name)
Deprecated.Get a lock -- getting the lock does *not* imply that it has been acquired. CallLock.tryLock()
orLock.lock()
on the returned object to acquire the lock.
-
-