NoFreeDaemons class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 24: Line 24:
This constructor generates an instance of an <var>[[NoFreeDaemons_class|NoFreeDaemons]]</var> exception. The <var>New</var> method format is as follows:
This constructor generates an instance of an <var>[[NoFreeDaemons_class|NoFreeDaemons]]</var> exception. The <var>New</var> method format is as follows:


<h4>Syntax</h4>
<h3>Syntax</h3>
{{Template:NoFreeDaemons:New syntax}}
{{Template:NoFreeDaemons:New syntax}}
<h4>Syntax terms</h4>
<h4>Syntax terms</h4>

Revision as of 22:36, 17 May 2011


The NoFreeDaemons exception class indicates that the Daemon class New constructor was invoked, but there were no daemon threads available to service the object.

To produce a NoFreeDaemons exception for yourself, you typically use a User Language Throw statement with a NoFreeDaemons New constructor. For example, the following statement throws a NoFreeDaemons exception:

throw %(noFreeDaemons):new


The NoFreeDaemons methods

The following are the available NoFreeDaemons class methods.

MethodDescription
NewCreate a new NoFreeDaemons object

The methods in the class are described in the subsections that follow. In addition:


New constructor

Create a new NoFreeDaemons object (NoFreeDaemons class)

This constructor generates an instance of an NoFreeDaemons exception. The New method format is as follows:

Syntax

%noFreeDaemons = [%(NoFreeDaemons):]New

Syntax terms

%noFreeDaemons A reference to an instance of a NoFreeDaemons object.
%(NoFreeDaemons)The class name in parentheses denotes a shared method.