Mutex v1.0.0 Mutex.Lock

This module defines a struct containing the key(s) locked with all the locking functions in Mutex.

Link to this section Summary

Types

t()

The struct containing the key(s) locked during a lock operation. :type specifies wether there is one or more keys

Link to this section Types

Link to this type t()
t() :: %Mutex.Lock{key: nil | Mutex.key, keys: nil | [Mutex.key], type: :single | :multi}

The struct containing the key(s) locked during a lock operation. :type specifies wether there is one or more keys.