Package com.urbanairship.liveupdate

Types

AsyncLiveUpdateNotificationHandler
Link copied to clipboard
interface AsyncLiveUpdateNotificationHandler : BaseLiveUpdateHandler
Async handlers for Live Update events.
CallbackLiveUpdateNotificationHandler
Link copied to clipboard
Live Update handler that displays the latest content in a notification and uses a callback to return update results.
LiveUpdate
Link copied to clipboard
data class LiveUpdate(name: String, type: String, content: JsonMap, lastContentUpdateTime: Long, lastStateChangeTime: Long, dismissalTime: Long?)
Information about a Live Update.
LiveUpdateCustomHandler
Link copied to clipboard
interface LiveUpdateCustomHandler : LiveUpdateHandler<Nothing>
Live Update handler that allows for custom handling of Live Updates.
LiveUpdateEvent
Link copied to clipboard
enum LiveUpdateEvent : Enum<LiveUpdateEvent>
Live Update event types.
LiveUpdateHandler
Link copied to clipboard
interface LiveUpdateHandler<T> : BaseLiveUpdateHandler
Handlers for Live Update events.
LiveUpdateManager
Link copied to clipboard
class LiveUpdateManager : AirshipComponent
Airship Live Updates.
LiveUpdateNotificationHandler
Link copied to clipboard
Live Update handler that displays the latest content in a notification.
LiveUpdateResult
Link copied to clipboard
sealed class LiveUpdateResult<out T>
Result type for LiveUpdateHandlers.
SuspendLiveUpdateNotificationHandler
Link copied to clipboard
Live Update handler that displays the latest content in a notification and uses a suspend function to handle updates.