func `try`() -> Bool
Attempts to acquire a lock, and immediately returns a Boolean value that indicates whether the attempt was successful.
ロックを獲得することを試みます、そしてその試みが成功したかどうかを指し示すブール値を直ちに返します。
Availability 有効性
Technology
limit
The time before which the lock should be acquired. それの前にロックが獲得されるべき時間。
true
if the lock is acquired before limit
, otherwise false
.
true
、もしそのロックがlimit
の前に獲得されるならば、そうでなければfalse
。
The thread is blocked until the receiver acquires the lock or limit
is reached.
スレッドは、レシーバがロックを獲得するまでまたはlimit
に達するまでブロックされます。
func `try`() -> Bool