Target filter
Search Kotlin docs
  • Platforms
  • Tealium Prism Kotlin
core/com.tealium.prism.core.api.misc/ActivityManager/ApplicationStatus

ApplicationStatus

sealed class ApplicationStatus

Possible states for the application status. The application should only be in Init state before an activity is on show. After which point, the only possible states should be Foregrounded or Backgrounded

Inheritors

Init
Foregrounded
Backgrounded

Types

Backgrounded
Link copied to clipboard
class Backgrounded(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus
Foregrounded
Link copied to clipboard
class Foregrounded(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus
Init
Link copied to clipboard
class Init(val timestamp: Long = getTimestampMilliseconds()) : ActivityManager.ApplicationStatus

Properties

timestamp
Link copied to clipboard
val timestamp: Long
Generated by Dokka
(c) Tealium 2026