UserNumber (Daemon property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<span style="font-size:120%"><b>Thread number of daemon.</b></span>
{{Template:Daemon:UserNumber subtitle}}
<var>UserNumber</var>, primarily useful for debugging, returns the user number of the thread associated with the <var>Daemon</var> object. The method takes no arguments and returns a numeric value.


UserNumber is a member of the [[Daemon class]]
==Syntax==
{{Template:Daemon:UserNumber syntax}}
===Syntax terms===
<table class="syntaxTable">
<tr><th>%number</th>
<td>A float variable to contain the returned user number.</td></tr>
<tr><th>%daemon</th>
<td>A <var>Daemon</var> object.</td></tr>
</table>


This method, primarily useful for debugging, returns the user number of the thread associated with the daemon object. The method takes no arguments and returns a numeric value.
==See also==
 
==UserNumber Syntax==
<pre>
%num = %daem:UserNumber
</pre>
 
===Syntax Terms===
<dl>
<dt>%num
<dd>A float variable to contain the returned user number.
<dt>%daem
<dd>A previously defined Daemon object.
</dl>
 
==See Also==
These methods return the user number of the creator of the daemon thread from which the methods are issued:
<ul>
<ul>
<li>[[MasterNumber (Daemon property)]]  
<li><var>[[MasterNumber (Daemon property)|MasterNumber]]</var> returns the user number of the master thread, the thread that ultimately created and controls the thread from which this method is being invoked.
<li>[[ParentNumber (Daemon property)]]
<li><var>[[ParentNumber (Daemon property)|ParentNumber]]</var> returns the user number of the parent thread, the thread that created the current thread from which this method is being invoked.
</ul>
</ul>
 
{{Template:Daemon:UserNumber footer}}
[[Category:Daemon class|UserNumber]]
[[Category:System methods]]

Latest revision as of 20:46, 8 July 2012

User number of the thread associated with this Daemon (Daemon class)

UserNumber, primarily useful for debugging, returns the user number of the thread associated with the Daemon object. The method takes no arguments and returns a numeric value.

Syntax

%number = daemon:UserNumber

Syntax terms

%number A float variable to contain the returned user number.
%daemon A Daemon object.

See also

  • MasterNumber returns the user number of the master thread, the thread that ultimately created and controls the thread from which this method is being invoked.
  • ParentNumber returns the user number of the parent thread, the thread that created the current thread from which this method is being invoked.