Contents

lock()

Attempts to acquire a lock.

Declaration

func lock()

Discussion

This method blocks a thread’s execution until the lock can be acquired. An application protects a critical section of code by requiring a thread to acquire a lock before executing the code. Once the critical section is past, the thread relinquishes the lock by invoking unlock.

See Also

Deprecated instance methods