Ellié Computing Home Page
My Shopping Cart

Your shopping cart is empty

Display Cart

Call us at +1 586 62 ELLIE / +1 586 62 35543 Office Closed
sales@elliecomputing.com - Contact us


System.Synchronization.Waitable object

 

 

Prototype for System.Synchronization.Waitable objects

Syntax

 This object cannot be created, only derived object can (such as System.Process object through the System.Process.launch function).

Parameters

 none.

Property Of

none.

Implemented In

ECMerge 2.1.76

Description

 Prototype for all the object which can be waited on.

Properties

Property Description
is_running Boolean. True until the object actually finished its job

 

Methods

 cancel

See Also 

 System.Process object

Method cancel

Syntax

function cancel ( )

Parameters

none.

Method Of

System.Synchronization.Waitable object.

Implemented In

ECMerge 2.1.76

Description

Cancels a running process and has no effect if the process already ended.

Examples

Example 1.

var process = System.Process.launch ("lengthy-command", { asynchronous: true } );
process.cancel ( ); 

See Also 

 none.