AmDaemon (Daemon property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
 
{{Template:Daemon:AmDaemon subtitle}}
<span class="pageSubtitle"><section begin=dpl_desc/>Checks whether the thread is a daemon.<section end=dpl_desc/></span>
 
AmDaemon is a member of the [[Daemon class]]
 
This shared method confirms whether the current thread is controlled by a Daemon object. The method takes no arguments and returns a boolean enumeration.


==Syntax==
==Syntax==

Revision as of 20:24, 1 March 2011

Is the current thread controlled by a Daemon? (Daemon class)


Syntax

%boolean = %(Daemon):AmDaemon

Syntax terms

%bool A declared enumeration object of type Boolean to contain the returned value of AmDaemon.
%(Daemon) The class name in parentheses denotes a shared method. Specifying %(Daemon): is not the only way to invoke the method (see :hdref refid=daemeth.).

AmDaemon returns True if issued on a daemon thread; otherwise it returns False.

See also