For information on converting to InterSystems IRIS, see the
InterSystems IRIS Adoption Guide
and the InterSystems IRIS In-Place Conversion Guide,
both available on the WRC Distributions page (login required).
This class is used internally by Caché. You should not make direct use of it within your applications. There is no guarantee made about either the behavior or future operation of this class.
Inherited description: This callback method is invoked by the %New() method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call.
When customizing this method, override the arguments with whatever variables and types you expect to receive from %New().
For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status
If instead of returning a %Status code this returns an oref and this oref is a subclass of the current
class then this oref will be the one returned to the caller of %New method.
To attach to a CSP process, first call this method which will return you a unique
ID number. Then display the CSP page but add an extra parameter of 'CSPDEBUG=<ID>'
for example 'http://localhost/csp/samples/loop.csp?CSPDEBUG=123456'. Then call the
AttachToCSP() method which will attach to the process that is
running this CSP page.
Return the list of source files that the position passed in maps to.
Each source file is separated by a space character.
The format of each source file data is:
Return the list of source files that the current break point maps to starting with the INT/BAS routine.
Each source file is separated by a space character.
The format of each source file data is:
Given INT routine name and line number and offset in this line return an array of source lines
that map to this INT line. The format of this return array is:
Where StartEnd is 1 for the start of the map and 2 for the end, sourceName is the name of the
source file, sourceLabel is the method/label name, sourceLine is the number of lines from
this label to the location, Offset is the offset on the line, Namespace is the location
of the source file.
Get the properties of the specified variable whose value is an oref.
%Studio.General::DumpObjectExecute implements logic to dump object
and collect properties in qHandle array. WatchList query from %Studio.Debugger to deliver array to client.