LastCommandErrorCount (Daemon property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template, tags and edits)
 
Line 13: Line 13:
   
   
==Examples==
==Examples==
<ol><li>Daemon objects set <var>[[ERCNT_parameter|ERCNT]]</var> to 0 after each request, so you might use <var>lastCommandErrorCount</var> as follows:
Daemon objects set <var>[[ERCNT_parameter|ERCNT]]</var> to 0 after each request, so you might use <var>lastCommandErrorCount</var> as follows:
<p class="code"><nowiki>%daem:run('I FOOBAR')
<p class="code"><nowiki>%daem:run('I FOOBAR')
assert not %daem:lastCommandErrorCount
assert not %daem:lastCommandErrorCount
</nowiki></p></ol>
</nowiki></p>
 
==See also==
==See also==
{{Template:Daemon:LastCommandErrorCount footer}}
{{Template:Daemon:LastCommandErrorCount footer}}

Latest revision as of 21:04, 18 July 2011

Number of errors since the last Run invocation (Daemon class)

LastCommandErrorCount returns the number of counting errors for the daemon (the Sirius ERCNT parameter value) from the last Run method. The method returns 0 if Run has yet to be invoked for that Daemon object.

Syntax

%number = daemon:LastCommandErrorCount

Syntax terms

%number A numeric variable to contain the value of the number of counting errors.
daemon A previously defined and instantiated Daemon object.

Examples

Daemon objects set ERCNT to 0 after each request, so you might use lastCommandErrorCount as follows:

%daem:run('I FOOBAR') assert not %daem:lastCommandErrorCount

See also