HaveDaemon (Daemon property): Difference between revisions
m (match syntax table to syntax template, tags and edits) |
m (→Examples) |
||
Line 13: | Line 13: | ||
==Examples== | ==Examples== | ||
In the following example, a global daemon updates an XML document, then <var>HaveDaemon</var> verifies the continued existence of the daemon. | |||
<p class="code">begin | <p class="code">begin | ||
%speed is object daemon global | %speed is object daemon global | ||
Line 43: | Line 43: | ||
The example above returns this result: | The example above returns this result: | ||
<p class="code"><out><in foo="bar"/></out>%bool is True | <p class="code"><out><in foo="bar"/></out>%bool is True | ||
</p | </p> | ||
==See also== | ==See also== | ||
{{Template:Daemon:HaveDaemon footer}} | {{Template:Daemon:HaveDaemon footer}} |
Revision as of 22:48, 2 May 2012
Is the thread associated with this Daemon accessible? (Daemon class)
HaveDaemon returns a Boolean enumeration that indicates whether the daemon thread associated with the Daemon method object is accessible.
Syntax
%boolean = daemon:HaveDaemon
Syntax terms
%boolean | A Boolean enumeration to contain the returned value of HaveDaemon. HaveDaemonreturns |
---|---|
daemon | A previously defined and instantiated Daemon object. |
Examples
In the following example, a global daemon updates an XML document, then HaveDaemon verifies the continued existence of the daemon.
begin %speed is object daemon global %list is object stringList %tiny is object xmlDoc %bool is enumeration boolean %speed = new %speed:run('*LOWER') %list = new text to %list begin %doc is object xmlDoc %(daemon):getInputObject(%doc) %doc:selectSingleNode('/out/in'):addAttribute('foo','bar') %(daemon):returnObject(%doc) end end text %tiny = new %tiny:loadXml('<out><in></in></out>') %speed:run(%list, %tiny, %tiny) %tiny:print %bool = %speed:havedaemon print '%bool is ' %bool:tostring end
The example above returns this result:
<out><in foo="bar"/></out>%bool is True