acquireLock abstract method

Future acquireLock(
  1. String? correlationId,
  2. String key,
  3. int ttl,
  4. int timeout,
)

Makes multiple attempts to acquire a lock by its key within give time interval.

  • correlationId (optional) transaction id to trace execution through call chain.
  • key a unique lock key to acquire.
  • ttl a lock timeout (time to live) in milliseconds.
  • timeout a lock acquisition timeout. Return Future that receives null for success. Throws error

Implementation

Future acquireLock(String? correlationId, String key, int ttl, int timeout);