Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

ProbeHandlerMulti- Global

The ProbeHandlerMulti script include is a probe handler for multiprobes.

This script include does not work with probe parameters that have value_scripts and does not work with JavaScript probes.

You can use this script include in any server-side script where you need to configure a multiprobe.

Parent Topic:Server API reference

ProbeHandlerMulti - addParameters(String parent, String sysID, GlideRecord probe)

Adds the probe parameters to the given XML parent element, taken from the given probe's parameter table.

NameTypeDescription
parentStringThe XML parent element to add parameters to.
sysIDStringThe sys_id of the probe to get parameters from.
probeGlideRecordOptional GlideRecord of the probe. If present, and there is a probe handler, it is called.
TypeDescription
void 

ProbeHandlerMulti - addProbes(String parent, String sysID)

Adds the probes for this multiprobe to the document.

NameTypeDescription
parentStringThe XML parent element to add the probes to.
sysIDStringThe sys_id of the multi-probe
TypeDescription
void 

ProbeHandlerMulti - run()

Runs the probe.

NameTypeDescription
None  
TypeDescription
void 

ProbeHandlerMulti - runProbeHandler(String params, String sysID, GlideRecord probe)

If the given probe's GlideRecord is present and contains a probe handler, runs the probe handler and adds any parameters it creates to the given parameter element.

NameTypeDescription
paramsStringThe XML parameter element to add parameters to.
sysIDStringThe sys_id of the probe to get parameters from.
probeGlideRecordOptional GlideRecord of the probe. If present, and there is a probe handler, it is called.
TypeDescription
void 

ProbeHandlerMulti - setParameter(String parent, String name, String value)

Sets the value of a given XML parameter element.

NameTypeDescription
parentStringThe XML parent element to add the parameter to.
nameStringThe name of the parameter to set
valueStringThe value to set the parameter to.
TypeDescription
void