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

wait(until:)

Blocks the current thread until the condition is signaled or the specified time limit is reached. 現在のスレッドをブロックします、条件が合図されるまたは指定された制限時間に達するまでです。

Declaration 宣言

func wait(until limit: Date) -> Bool

Parameters パラメータ

limit

The time at which to wake up the thread if the condition has not been signaled. 条件が合図されていないならば、それでこのスレッドを起こす時間。

Return Value 戻り値

true if the condition was signaled; otherwise, false if the time limit was reached. true、もし条件が合図されたならば;そうでなければ、false、もし制限時間が到達されたならば。

Discussion 議論

You must lock the receiver prior to calling this method. あなたは、このメソッドを呼び出す前にレシーバをロックしなければなりません。

See Also 参照

Waiting for the Lock ロックに対して待機する

Related Documentation 関連文書