Skip to main content

%Net.Remote.Object

class %Net.Remote.Object extends %Library.RegisteredObject

Property Inventory

Method Inventory

Properties

property %gateway as %Net.Remote.Gateway;
Property methods: %gatewayGet(), %gatewayGetSwizzled(), %gatewayIsValid(), %gatewayNewObject(), %gatewaySet()

Methods

method %CastAs(classname As %String) as %Net.Remote.Object
classmethod %ClassMethod(gateway As %Net.Remote.Gateway, className As %String, methodName As %String, args...) as %ObjectHandle
method %Constructor(gateway As %Net.Remote.Gateway, className As %String, args...) as %Status
method %DispatchGetProperty(property As %String) as %ObjectHandle
Inherited description: Is used to get the value of an unknown property.
method %DispatchMethod(method As %String, args...) as %ObjectHandle
Inherited description: Is used to implement an unknown method call. It is also used to resolve an unknown multidimensional property reference (to get the value of a property) because that syntax is identical to a method call.
classmethod %DispatchNativeCall(device, msgid, context, fun) as %String
method %DispatchSetProperty(property As %String, value)
Inherited description: is used to set the value of an unknown property.
classmethod %GetResponse(gateway As %Net.Remote.Gateway, sequenceNumber As %Integer, functionCode As %String, currentDevice As %String, ByRef orefCache)
classmethod %GetStaticProperty(gateway As %Net.Remote.Gateway, className As %String, propertyName As %String) as %ObjectHandle
method %OnClose() as %Status
Inherited description: This callback method is invoked by the %Close() method to provide notification that the current object is being closed.

The return value of this method is ignored.

method %OnNew(gateway As %Net.Remote.Gateway, args...) as %Status
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.

final classmethod %PostInvoke(gateway As %Net.Remote.Gateway, device)
final classmethod %PreInvoke(gateway As %Net.Remote.Gateway, parameters)
final classmethod %ProcessError(gateway As %Net.Remote.Gateway, currentDevice As %String, error As %String)
classmethod %ProcessReturnValues(gateway, currentDevice, returnValue, args...)
classmethod %ProcessY9(gateway, msgid, orefCache) as %String
classmethod %ProcessYG(gateway, msgid) as %String
classmethod %ProcessYH(gateway, msgid) as %String
classmethod %SetStaticProperty(gateway As %Net.Remote.Gateway, className As %String, propertyName As %String, value As %ObjectHandle)
classmethod %cullStack(inStack) as %String
classmethod %cullStackOne(line) as %String
classmethod %mergeStack(precedingStack, remoteStack, localStack, remoteLanguage) as %String

Inherited Members

Inherited Methods

Subclasses

FeedbackOpens in a new tab