Package | com.distriqt.extension.firebase.remoteconfig |
Class | public class FirebaseRemoteConfigInfo |
Inheritance | FirebaseRemoteConfigInfo ![]() |
Property | Defined 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 |
Method | Defined By | ||
---|---|---|---|
FirebaseRemoteConfigInfo |
Constant | Defined 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 |
fetchTimestamp | property |
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.
lastFetchStatus | property |
public var lastFetchStatus:int = 0
The status of the most recent fetch attempt. See the LAST_FETCH_STATUS_XXXXX
values.
settings | property |
public var settings:FirebaseRemoteConfigSettings
The current settings of the FirebaseRemoteConfig instance
FirebaseRemoteConfigInfo | () | Constructor |
public function FirebaseRemoteConfigInfo()
LAST_FETCH_STATUS_FAILURE | Constant |
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_YET | Constant |
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_SUCCESS | Constant |
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_THROTTLED | Constant |
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.