C# Class Node.net.EventManager

ファイルを表示 Open project: WindowsTermKit/TermKit

Public Methods

Method Description
Add ( object @this ) : void

Adds an object to the list of objects currently performing asynchronous processing loops. The Node.net application will not exit until the list is empty.

IsFinished ( ) : bool

Returns whether the application can now exit.

Remove ( object @this ) : void

Removes an object from the list of objects performing asynchronous processing loops. The Node.net application will not exit until the list is empty.

Method Details

Add() public static method

Adds an object to the list of objects currently performing asynchronous processing loops. The Node.net application will not exit until the list is empty.
public static Add ( object @this ) : void
@this object
return void

IsFinished() public static method

Returns whether the application can now exit.
public static IsFinished ( ) : bool
return bool

Remove() public static method

Removes an object from the list of objects performing asynchronous processing loops. The Node.net application will not exit until the list is empty.
public static Remove ( object @this ) : void
@this object
return void