JsonCircularReference class

From m204wiki
Revision as of 22:17, 27 April 2015 by MCosta (talk | contribs) (Created page with "<!-- JsonCircularReference class --> __NOTOC__ The <var>JsonCircularReference</var> exception class indicates that the <var>Daemon</var> class <var>New_(Dae...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


The JsonCircularReference 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 JsonCircularReference exception for yourself, you typically use a SOUL Throw statement with a JsonCircularReference New constructor. For example, the following statement throws a JsonCircularReference exception:

throw %(JsonCircularReference):new


The JsonCircularReference methods

The following are the available JsonCircularReference class methods.

MethodDescription
NewCreate a new JsonCircularReference object

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


New constructor

Create a new JsonCircularReference object (JsonCircularReference class)

This Constructor generates an instance of a JsonCircularReference exception. The New method format is as follows:

Syntax

%jsonCircularReference = [%(JsonCircularReference):]New

Syntax terms

%JsonCircularReference A reference to an instance of a JsonCircularReference object.
[%(JsonCircularReference):]The class name in parentheses denotes a Constructor. See Usage notes, below, for more information about invoking a JsonCircularReference Constructor.

Usage notes

  • As described in Using New or other Constructors, New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:

    %nfdaem = new %nfdaem = %(JsonCircularReference):new %nfdaem = %nfdaem:new