Skip to main content

%Net.Remote.Base

class %Net.Remote.Base extends %Net.Remote.Object

Property Inventory

Method Inventory

Parameters

parameter REMOTECLASSNAME;

Properties

property Gateway as %Net.Remote.Gateway;
Property methods: GatewayGet(), GatewayGetSwizzled(), GatewayIsValid(), GatewayNewObject()

Methods

classmethod %DispatchClassMethod(className As %String, methodName As %String, args...) as %ObjectHandle
Inherited description: Is used to implement an unknown class method call
method %DispatchGetProperty(property As %String) as %ObjectHandle
Inherited description: Is used to get the value of an unknown property.
method %DispatchMethod(methodName 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.
method %DispatchSetProperty(property As %String, value)
Inherited description: is used to set the value of an unknown property.
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.

classmethod %ProcessReturnValues(gateway, currentDevice, returnValue, args...)
classmethod %dispatch(code="YE", invokee, method, gateway, args...) as %ObjectHandle
method GatewayGet() as %Net.Remote.Gateway
method GatewaySet(value As %Net.Remote.Gateway) as %Status

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab