package
Version:
v0.18.4-beta.rc1
Opens a new window with list of versions in this module.
Published: Nov 21, 2024
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Mutex is a struct that keeps track of a set of mutexes with a given ID. It
can be used for making sure only one goroutine gets given the mutex per ID.
NewMutex creates a new Mutex.
func (c *Mutex[T]) Lock(id T)
Lock locks the mutex by the given ID. If the mutex is already locked by this
ID, Lock blocks until the mutex is available.
func (c *Mutex[T]) Unlock(id T)
Unlock unlocks the mutex by the given ID. It is a run-time error if the
mutex is not locked by the ID on entry to Unlock.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.