Code Block func didReceive(_ payloads: [MXMetricPayload]) { for metricPayload in payloads { if let backgroundExitReason = metricPayload.applicationExitMetrics?.backgroundExitData { let value = backgroundExitReason.cumulativeAppWatchdogExitCount
Is the "cumulativeAppWatchdogExitCount" cumulated over the whole App lifetime or is this value only cumulated for the time period defined by the MXMetricPayload timestamps timeStampBegin & timeStampEnd?