var isRunning : Bool
A status that indicates whether the receiver is still running.
var terminationReason : Process.TerminationReason
The reason the system terminated the task.
Availability 有効性
Technology
var terminationStatus: Int32
{ get }
The exit status returned by the receiver’s executable. レシーバのもつ実行可能ファイルによって返される退出状態。
Each task defines and documents how your app should interpret the return value. For example, many commands return 0 if they complete successfully or an error code if they don’t. You’ll need to look at the documentation for that task to learn what values it returns under what circumstances. 例えば、多くのコマンドは、もしそれらが成功裏に完了するならば0をまたはそれらがそうしないならばエラーコードを返します。あなたは、そのタスクに対する文書化を捜してどんな値をそれは返すのかどんな事情でかを学ぶ必要があるでしょう。
This method raises an NSInvalid
if the receiver is still running.
このメソッドは、NSInvalid
を、もしレシーバがまだ実行中ならば返します。
Verify that the receiver isn’t running before you use it.
var isRunning : Bool
var terminationReason : Process.TerminationReason
func waitUntilExit ()
func terminate()