AmDaemon (Daemon property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 7: Line 7:
<td>A declared enumeration object of type Boolean to contain the returned value of AmDaemon. </td></tr>
<td>A declared enumeration object of type Boolean to contain the returned value of AmDaemon. </td></tr>
<tr><th>%(Daemon)</th>
<tr><th>%(Daemon)</th>
<td>The class name in parentheses denotes a shared method. Specifying <tt>%(Daemon):</tt> is not the only way to invoke the method (see :hdref refid=daemeth.).</td></tr>
<td>The class name in parentheses denotes a shared method. <var>AmDaemon</var> can also be invoked via a <var>Daemon</var> object variable, which may be null.</td></tr></table>
</table>
   
   
AmDaemon returns <tt>True</tt> if issued on a daemon thread; otherwise it returns <tt>False</tt>.
AmDaemon returns <tt>True</tt> if issued on a daemon thread; otherwise it returns <tt>False</tt>.

Revision as of 21:14, 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. AmDaemon can also be invoked via a Daemon object variable, which may be null.

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

See also