Instance Method インスタンスメソッド

lock(before:)

Attempts to acquire a lock before a given date. 与えられた日付の前にロックの獲得を試みます。

Declaration 宣言

func lock(before limit: Date) -> Bool

Parameters パラメータ

limit

The time before which the lock should be acquired. それの前にロックが獲得されるべき時間。

Return Value 戻り値

true if the lock is acquired before limit, otherwise false. true、もしそのロックがlimitの前に獲得されるならば、そうでなければfalse

Discussion 議論

The thread is blocked until the receiver acquires the lock or limit is reached. スレッドは、レシーバがロックを獲得するまでまたはlimitに達するまでブロックされます。

See Also 参照

Acquiring a Lock ロックを入手する

Related Documentation 関連文書