var isExecuting : Bool
A Boolean value that indicates whether the receiver is executing.
レシーバが遂行中かどうかを指し示すブール値。
var isFinished : Bool
A Boolean value that indicates whether the receiver has finished execution.
レシーバが遂行を終了したかどうかを指し示すブール値。
Availability 有効性
Technology
var isCancelled: Bool
{ get }
true
if the receiver has been cancelled, otherwise false
.
true
、もしレシーバが取り消されたならば、そうでなければfalse
。
If your thread supports cancellation, it should check this property periodically and exit if it ever returns true
.
あなたのスレッドが取り消しをサポートするならば、それはこのプロパティを定期的に検査してそれがともかくtrue
を返すならば退出すべきです。
var isExecuting : Bool
var isFinished : Bool
func cancel()