Packagecom.myflashlab.air.extensions.firebase.remoteConfig
Classpublic class RemoteConfigSettings
InheritanceRemoteConfigSettings Inheritance Object



Public Methods
 MethodDefined By
  
RemoteConfigSettings
  
Returns the fetch timeout in seconds.
RemoteConfigSettings
  
Returns the minimum interval between successive fetches calls in seconds.
RemoteConfigSettings
  
Indicates the status of the developer mode setting.
RemoteConfigSettings
  
Turns the developer mode setting on or off.
RemoteConfigSettings
  
Sets the connection and read timeouts for fetch requests to the Firebase Remote Config servers in seconds.
RemoteConfigSettings
  
Sets the minimum interval between successive fetch calls.
RemoteConfigSettings
Constructor Detail
RemoteConfigSettings()Constructor
public function RemoteConfigSettings()



Method Detail
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.

Returns
Number
getMinimumFetchIntervalInSeconds()method 
public function getMinimumFetchIntervalInSeconds():Number

Returns the minimum interval between successive fetches calls in seconds.

Returns
Number
isDeveloperModeEnabled()method 
public function isDeveloperModeEnabled():Boolean

Indicates the status of the developer mode setting.

Returns
Booleantrue 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.

Returns
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.

Returns
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.

Returns
RemoteConfigSettings