readLock method

  1. @MPI(name: "mesh.locker.r.lock")
Future<bool?> readLock(
  1. String rid,
  2. Duration timeout, {
  3. Context? ctx,
})

ReadLock create read lock.

Implementation

@MPI(name: "mesh.locker.r.lock")
Future<bool?> readLock(String rid, Duration timeout, {Context? ctx}) {
  throw UnimplementedError('readLock() has not been implemented.');
}