Type Method
型メソッド
sleep(until:)
Blocks the current thread until the time specified.
指定された時間まで現在のスレッドを遮断します。
Declaration
宣言
class func sleep(until date: Date
)
Parameters
パラメータ
aDate
The time at which to resume processing.
この時間で処理を再開することになります。
Discussion
議論
No run loop processing occurs while the thread is blocked.
どんな実行ループ処理も、スレッドが遮断されている間には発生しません。
See Also
参照
Stopping a Thread
あるスレッドを停止する
func cancel()
Changes the cancelled state of the receiver to indicate that it should exit.
レシーバの取り消し状態を変更して、それが退出すべきことを指し示します。
Related Documentation
関連文書
class var current: Thread
Returns the thread object representing the current thread of execution.
現在の遂行スレッドを表しているスレッドオブジェクトを返します。