Prototype for System.Synchronization.Waitable objects
This object cannot be created, only derived object can (such as System.Process object through the System.Process.launch function).
none.
none.
ECMerge 2.1.76
Prototype for all the object which can be waited on.
Property | Description |
is_running | Boolean. True until the object actually finished its job |
System.Process object
function cancel ( )
none.
System.Synchronization.Waitable object.
ECMerge 2.1.76
Cancels a running process and has no effect if the process already ended.
var process = System.Process.launch ("lengthy-command",
{ asynchronous: true } );
process.cancel ( );
none.