Package | com.myflashlab.air.extensions.firebase.remoteConfig |
Class | public class RemoteConfigSettings |
Inheritance | RemoteConfigSettings Object |
Method | Defined By | ||
---|---|---|---|
RemoteConfigSettings | |||
getFetchTimeoutInSeconds():Number
Returns the fetch timeout in seconds. | RemoteConfigSettings | ||
getMinimumFetchIntervalInSeconds():Number Returns the minimum interval between successive fetches calls in seconds. | RemoteConfigSettings | ||
isDeveloperModeEnabled():Boolean
Indicates the status of the developer mode setting. | RemoteConfigSettings | ||
setDeveloperModeEnabled(enabled:Boolean):RemoteConfigSettings
Turns the developer mode setting on or off. | RemoteConfigSettings | ||
setFetchTimeoutInSeconds(duration:Number):RemoteConfigSettings
Sets the connection and read timeouts for fetch requests to the Firebase Remote Config
servers in seconds. | RemoteConfigSettings | ||
setMinimumFetchIntervalInSeconds(duration:Number):RemoteConfigSettings
Sets the minimum interval between successive fetch calls. | RemoteConfigSettings |
RemoteConfigSettings | () | Constructor |
public function RemoteConfigSettings()
getFetchTimeoutInSeconds | () | method |
public function getFetchTimeoutInSeconds():Number
Returns the fetch timeout in seconds. The timeout specifies how long the client should wait for a connection to the Firebase Remote Config servers.
ReturnsNumber |
getMinimumFetchIntervalInSeconds | () | method |
public function getMinimumFetchIntervalInSeconds():Number
Returns the minimum interval between successive fetches calls in seconds.
ReturnsNumber |
isDeveloperModeEnabled | () | method |
public function isDeveloperModeEnabled():Boolean
Indicates the status of the developer mode setting.
ReturnsBoolean — true if the developer mode is enabled, false otherwise.
|
setDeveloperModeEnabled | () | method |
public function setDeveloperModeEnabled(enabled:Boolean):RemoteConfigSettings
Turns the developer mode setting on or off.
Parameters
enabled:Boolean — Should be true to enable, or false to disable this
setting.
|
RemoteConfigSettings |
setFetchTimeoutInSeconds | () | method |
public function setFetchTimeoutInSeconds(duration:Number):RemoteConfigSettings
Sets the connection and read timeouts for fetch requests to the Firebase Remote Config servers in seconds. A fetch call will fail if it takes longer than the specified timeout to connect to or read from the Remote Config servers.
Parameters
duration:Number — Timeout duration in seconds. Should be a non-negative number.
|
RemoteConfigSettings |
setMinimumFetchIntervalInSeconds | () | method |
public function setMinimumFetchIntervalInSeconds(duration:Number):RemoteConfigSettings
Sets the minimum interval between successive fetch calls. Fetches less than {
Parameters
duration:Number — Interval duration in seconds. Should be a non-negative number.
|
RemoteConfigSettings |