@notification::setAllowOutOfCoverageNotifications

The xMatters Node checks to see whether recipients are available before sending notifications. Using this method allows live notifications that have not been serviced for a period of time but were created when a User was in coverage to be sent out without being rechecked. (This was the behavior of the Node in previous versions of xMatters).

The state of this method is set to false by default.

Syntax:

@notification::setAllowOutOfCoverageNotifications(Boolean state)

Parameters:

(Boolean) state: true to keep the legacy behavior and allow out-of-coverage notifications.

Returns:

None

Example:

The following example illustrates adding the setAllowOutofCoverageNotifications method to the initial process script:

# Optional override behavior

@alert::setTimeOverride(false)

@alert::setEmergencyDeviceUsage(false)

# Use legacy out-of-coverage notification behavior

@alert::setAllowOutOfCoverageNotifications(true)