Packagecom.distriqt.extension.firebase.remoteconfig
Classpublic class FirebaseRemoteConfigInfo
InheritanceFirebaseRemoteConfigInfo Inheritance Object

Wraps the current state of the FirebaseRemoteConfig singleton object.



Public Properties
 PropertyDefined By
  fetchTimestamp : Number = -1
The timestamp (milliseconds since epoch) of the last successful fetch, regardless of whether the fetch was activated or not.
FirebaseRemoteConfigInfo
  lastFetchStatus : int = 0
The status of the most recent fetch attempt.
FirebaseRemoteConfigInfo
  settings : FirebaseRemoteConfigSettings
The current settings of the FirebaseRemoteConfig instance
FirebaseRemoteConfigInfo
Public Methods
 MethodDefined By
  
FirebaseRemoteConfigInfo
Public Constants
 ConstantDefined By
  LAST_FETCH_STATUS_FAILURE : int = 1
[static] Indicates that the most recent attempt to fetch parameter values from the Remote Config Server has failed.
FirebaseRemoteConfigInfo
  LAST_FETCH_STATUS_NO_FETCH_YET : int = 0
[static] Indicates that the FirebaseRemoteConfig singleton object has not yet attempted to fetch parameter values from the Remote Config Server.
FirebaseRemoteConfigInfo
  LAST_FETCH_STATUS_SUCCESS : int = -1
[static] Indicates that the most recent fetch of parameter values from the Remote Config Server was completed successfully.
FirebaseRemoteConfigInfo
  LAST_FETCH_STATUS_THROTTLED : int = 2
[static] Indicates that the most recent attempt to fetch parameter values from the Remote Config Server was throttled.
FirebaseRemoteConfigInfo
Property Detail
fetchTimestampproperty
public var fetchTimestamp:Number = -1

The timestamp (milliseconds since epoch) of the last successful fetch, regardless of whether the fetch was activated or not.

-1 if no fetch attempt has been made yet. Otherwise, returns the timestamp of the last successful fetch operation.

lastFetchStatusproperty 
public var lastFetchStatus:int = 0

The status of the most recent fetch attempt. See the LAST_FETCH_STATUS_XXXXX values.

settingsproperty 
public var settings:FirebaseRemoteConfigSettings

The current settings of the FirebaseRemoteConfig instance

Constructor Detail
FirebaseRemoteConfigInfo()Constructor
public function FirebaseRemoteConfigInfo()



Constant Detail
LAST_FETCH_STATUS_FAILUREConstant
public static const LAST_FETCH_STATUS_FAILURE:int = 1

Indicates that the most recent attempt to fetch parameter values from the Remote Config Server has failed.

LAST_FETCH_STATUS_NO_FETCH_YETConstant 
public static const LAST_FETCH_STATUS_NO_FETCH_YET:int = 0

Indicates that the FirebaseRemoteConfig singleton object has not yet attempted to fetch parameter values from the Remote Config Server.

LAST_FETCH_STATUS_SUCCESSConstant 
public static const LAST_FETCH_STATUS_SUCCESS:int = -1

Indicates that the most recent fetch of parameter values from the Remote Config Server was completed successfully.

LAST_FETCH_STATUS_THROTTLEDConstant 
public static const LAST_FETCH_STATUS_THROTTLED:int = 2

Indicates that the most recent attempt to fetch parameter values from the Remote Config Server was throttled.