Instance Method
インスタンスメソッド
cancel
Changes the cancelled state of the receiver to indicate that it should exit.
レシーバの取り消し状態を変更して、それが退出すべきことを指し示します。
Discussion
議論
The semantics of this method are the same as those used for NSOperation
. This method sets state information in the receiver that is then reflected by the cancelled
property. Threads that support cancellation should periodically call the cancelled
method to determine if the thread has in fact been cancelled, and exit if it has been.
このメソッドの意味論は、NSOperation
に対して使われるものと同じです。このメソッドは、レシーバの中の状態情報を設定します、それはそれからcancelled
プロパティによって反映されます。取り消しをサポートするスレッドは、定期的にcancelled
メソッドを呼び出して、スレッドが実際に取り消されたかどうかを決定して、そしてそれがそうだったならば退出すべきです。
For more information about cancellation and operation objects, see NSOperation
.
取り消しおよびおべレーションオブジェクトについてさらなる情報として、NSOperation
を見てください。
See Also
参照
Stopping a Thread
あるスレッドを停止する
+ sleepUntilDate:
Blocks the current thread until the time specified.
指定された時間まで現在のスレッドを遮断します。
+ exit
Terminates the current thread.
現在のスレッドを終了します。
Related Documentation
関連文書
cancelled
A Boolean value that indicates whether the receiver is cancelled.
レシーバが取り消されるかどうかを指し示すブール値。