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