class EnsLib.UDP.OutboundAdapter
extends Ens.OutboundAdapter, EnsLib.UDP.Common
parameter SETTINGS = "UDPSender,UDPHost,UDPPort,UDPDebugOutputFile";
List of properties can be set as settings in the configuration file
format is a comma separated list of property names
property UDPDebugOutputFile
as %String;
property UDPHost
as %String [ InitialExpression = "127.0.0.1" ];
property UDPPort
as %Integer [ InitialExpression = 10000 ];
property UDPSender
as %String(MAXLEN=128) [ InitialExpression = $System.Util.InstallDirectory() _ "bin/udpsend" ];
method OnInit()
as %Status
This user callback method is called just after %OnNew()
method OnTearDown()
as %Status
This user callback method is called just before %OnClose()
method SendStream(pBuffer As %Stream.Object)
as %Status