public abstract class

DisplayCoordinator

extends Object
java.lang.Object
   ↳ com.urbanairship.iam.DisplayCoordinator

Class Overview

Handles display coordination for in-app messages.

Summary

Public Constructors
DisplayCoordinator()
Public Methods
abstract boolean isReady()
Called to check if a the display is ready.
final void notifyDisplayReady()
Notifies the InAppMessageManager that the coordinator's display is ready.
abstract void onDisplayFinished(InAppMessage message)
Notifies the coordinator that message display has finished.
abstract void onDisplayStarted(InAppMessage message)
Notifies the coordinator that message display has begun.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DisplayCoordinator ()

Public Methods

public abstract boolean isReady ()

Called to check if a the display is ready.

Returns
  • true if the display is ready, otherwise false.

public final void notifyDisplayReady ()

Notifies the InAppMessageManager that the coordinator's display is ready.

public abstract void onDisplayFinished (InAppMessage message)

Notifies the coordinator that message display has finished.

Parameters
message The in-app message.

public abstract void onDisplayStarted (InAppMessage message)

Notifies the coordinator that message display has begun.

Parameters
message The in-app message.