simple_mutex 1.0.0 copy "simple_mutex: ^1.0.0" to clipboard
simple_mutex: ^1.0.0 copied to clipboard

Simple Mutex providing a exclusive write lock and shared read-only locks.

Simple Mutex #

This provids a exclusive write lock and shared read-only locks.

Features #

  • Aquiring the literally mutually exclusive lock, for read/ write user of resources.
  • Releasing the mutually exclusive lock.
  • Aquiring a shared locks, for read-only users.
  • Releasing a shared lock.

Getting started #

import 'simple_mutex/simple_mutex.dart';

Usage #

Declaration.

final mutex = Mutex();

Protect asynchronous critical section with mutually exclusive lock.

await mutex.lock();
// Some mutually exclusive asynchronous critical session.
// This prevent entering other mutually exclusive/ shared  critical sesssions.
// This wait for ending otehr mutually exclusive/ shared critical sesssions.
mutex.unlock();

Protect asynchronous critical section with shared lock.

await mutex.lockShared();
// Some shared asynchronous critical session.
// This can be run concurrently with other shared critical sessions.
// This wait for ending mutually exclusive critical sesssions.
mutex.unlockShared();

Additional information #

This mekes use of the event loop as the waiting queue, without additional lists.

2
likes
0
pub points
33%
popularity

Publisher

unverified uploader

Simple Mutex providing a exclusive write lock and shared read-only locks.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on simple_mutex