Module: Mutex_m
- Defined in:
- sig/vendor/mutex_m.rbs
Overview
Type stubs for mutex_m gem
Instance Method Summary collapse
- #mu_initialize ⇒ void
- #mu_lock ⇒ void
- #mu_locked? ⇒ Boolean
- #mu_synchronize ⇒ void
- #mu_try_lock ⇒ Boolean
- #mu_unlock ⇒ void
Instance Method Details
#mu_initialize ⇒ void
This method returns an undefined value.
3 |
# File 'sig/vendor/mutex_m.rbs', line 3
def mu_initialize: () -> void
|
#mu_lock ⇒ void
This method returns an undefined value.
4 |
# File 'sig/vendor/mutex_m.rbs', line 4
def mu_lock: () -> void
|
#mu_locked? ⇒ Boolean
8 |
# File 'sig/vendor/mutex_m.rbs', line 8
def mu_locked?: () -> bool
|
#mu_synchronize ⇒ void
This method returns an undefined value.
6 |
# File 'sig/vendor/mutex_m.rbs', line 6
def mu_synchronize: [T] () { () -> T } -> T
|
#mu_try_lock ⇒ Boolean
7 |
# File 'sig/vendor/mutex_m.rbs', line 7
def mu_try_lock: () -> bool
|
#mu_unlock ⇒ void
This method returns an undefined value.
5 |
# File 'sig/vendor/mutex_m.rbs', line 5
def mu_unlock: () -> void
|