List of Daemon methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
m (Automatically generated page update)
 
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<!-- This page was automatically generated and will be automatically
<!-- This page was automatically generated and will be automatically
     replaced, so any manual edits will be lost. You've been warned. -->
     replaced, so any manual edits will be lost. You've been warned. -->
The following are the available [[Daemon class]] methods.
The following are the available <var>[[Daemon class|Daemon]]</var> class methods.
{{Template:Method list header|class=Daemon}}
{{Template:Method list header|class=Daemon}}
<div class="showVisit">
<table class="wikitable">
<table class="wikitable">
<tr><th>Method</th><th>Description</th></tr>
<tr><th>Method</th><th>Description</th></tr>
<tr><td valign="top">[[AmDaemon (Daemon property)|AmDaemon]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[AmDaemon (Daemon property)|AmDaemon]]</td><td valign="top">Is the current thread controlled by a Daemon?</td></tr>
<tr><td valign="top">[[GetInputObject (Daemon subroutine)|GetInputObject]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[AsynchronousFinished (Daemon property)|AsynchronousFinished]]</td><td valign="top">Is the asynchronous request on this Daemon finished?</td></tr>
<tr><td valign="top">[[HaveDaemon (Daemon function)|HaveDaemon]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[Continue (Daemon function)|Continue]]</td><td valign="top">Continue processing in daemon</td></tr>
<tr><td valign="top">[[LastCommandErrorCount (Daemon function)|LastCommandErrorCount]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ContinueAsynchronously (Daemon subroutine)|ContinueAsynchronously]]</td><td valign="top">Continue processing asynchronously in daemon</td></tr>
<tr><td valign="top">[[MasterNumber (Daemon function)|MasterNumber]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ContinueIndependently (Daemon subroutine)|ContinueIndependently]]</td><td valign="top">Continue processing independently in daemon</td></tr>
<tr><td valign="top">[[New (Daemon constructor)|New]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[GetInputObject (Daemon subroutine)|GetInputObject]]</td><td valign="top">Retrieve input object passed by master thread</td></tr>
<tr><td valign="top">[[Open (Daemon subroutine)|Open]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[HaveDaemon (Daemon property)|HaveDaemon]]</td><td valign="top">Is the thread associated with this Daemon accessible?</td></tr>
<tr><td valign="top">[[ParentNumber (Daemon function)|ParentNumber]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[LastCommandErrorCount (Daemon property)|LastCommandErrorCount]]</td><td valign="top">Number of errors since the last Run invocation</td></tr>
<tr><td valign="top">[[ReturnInfoObject (Daemon subroutine)|ReturnInfoObject]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[MasterNumber (Daemon property)|MasterNumber]]</td><td valign="top">User number of the master thread</td></tr>
<tr><td valign="top">[[ReturnObject (Daemon subroutine)|ReturnObject]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[New (Daemon constructor)|New]]</td><td valign="top">Create a new Daemon</td></tr>
<tr><td valign="top">[[Run (Daemon function)|Run]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[Open (Daemon subroutine)|Open]]</td><td valign="top">Open a file/group on the Daemon thread</td></tr>
<tr><td valign="top">[[RunAsynchronously (Daemon subroutine)|RunAsynchronously]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ParentNumber (Daemon property)|ParentNumber]]</td><td valign="top">User number of the parent thread</td></tr>
<tr><td valign="top">[[RunIndependently (Daemon subroutine)|RunIndependently]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ReturnInfoObject (Daemon subroutine)|ReturnInfoObject]]</td><td valign="top">Return an info object to the master thread</td></tr>
<tr><td valign="top">[[UserNumber (Daemon function)|UserNumber]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ReturnObject (Daemon subroutine)|ReturnObject]]</td><td valign="top">Return an object to the master thread</td></tr>
<tr><td valign="top">[[UserStatistics (Daemon function)|UserStatistics]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[ReturnToMaster (Daemon subroutine)|ReturnToMaster]]</td><td valign="top">Return control to the master thread</td></tr>
<tr><td valign="top">[[WaitAsynchronous (Daemon function)|WaitAsynchronous]]</td><td valign="top"></td></tr>
<tr><td valign="top">[[Run (Daemon function)|Run]]</td><td valign="top">Run a set of commands on the Daemon thread</td></tr>
<tr><td valign="top">[[RunAsynchronously (Daemon subroutine)|RunAsynchronously]]</td><td valign="top">Run commands on the Daemon thread asynchronously</td></tr>
<tr><td valign="top">[[RunIndependently (Daemon subroutine)|RunIndependently]]</td><td valign="top">Run commands on an independent Daemon thread</td></tr>
<tr><td valign="top">[[State (Daemon property)|State]]</td><td valign="top">State of daemon thread</td></tr>
<tr><td valign="top">[[UserNumber (Daemon property)|UserNumber]]</td><td valign="top">User number of the thread associated with this Daemon</td></tr>
<tr><td valign="top">[[UserStatistics (Daemon function)|UserStatistics]]</td><td valign="top">Statistics for the thread associated with this Daemon</td></tr>
<tr><td valign="top">[[WaitAsynchronous (Daemon function)|WaitAsynchronous]]</td><td valign="top">Wait for an asynchronous result</td></tr>
</table>
</table>
</div>
==See also==
==See also==
<table class="list"><tr>
<table class="list"><tr>
Line 32: Line 40:
</tr>
</tr>
</table>
</table>
[[Category:Lists of methods]]

Latest revision as of 03:33, 20 May 2012

The following are the available Daemon class methods.

MethodDescription
AmDaemonIs the current thread controlled by a Daemon?
AsynchronousFinishedIs the asynchronous request on this Daemon finished?
ContinueContinue processing in daemon
ContinueAsynchronouslyContinue processing asynchronously in daemon
ContinueIndependentlyContinue processing independently in daemon
GetInputObjectRetrieve input object passed by master thread
HaveDaemonIs the thread associated with this Daemon accessible?
LastCommandErrorCountNumber of errors since the last Run invocation
MasterNumberUser number of the master thread
NewCreate a new Daemon
OpenOpen a file/group on the Daemon thread
ParentNumberUser number of the parent thread
ReturnInfoObjectReturn an info object to the master thread
ReturnObjectReturn an object to the master thread
ReturnToMasterReturn control to the master thread
RunRun a set of commands on the Daemon thread
RunAsynchronouslyRun commands on the Daemon thread asynchronously
RunIndependentlyRun commands on an independent Daemon thread
StateState of daemon thread
UserNumberUser number of the thread associated with this Daemon
UserStatisticsStatistics for the thread associated with this Daemon
WaitAsynchronousWait for an asynchronous result

See also