UserNumber (Daemon property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template, tags and edits)
mNo edit summary
 
Line 1: Line 1:
{{Template:Daemon:UserNumber subtitle}}
{{Template:Daemon:UserNumber subtitle}}
<var>UserNumber</var>, primarily useful for debugging, returns the user number of the thread associated with the <var>[[Daemon class|Daemon]]</var> object. The method takes no arguments and returns a numeric value.
<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.


==Syntax==
==Syntax==
Line 9: Line 9:
<td>A float variable to contain the returned user number.</td></tr>
<td>A float variable to contain the returned user number.</td></tr>
<tr><th>%daemon</th>
<tr><th>%daemon</th>
<td>A previously defined <var>[[Daemon class|Daemon]]</var> object.</td></tr>
<td>A <var>Daemon</var> object.</td></tr>
</table>
</table>



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.