Packagecom.myflashlab.air.extensions.firebase.db
Classpublic class DBMutableData
InheritanceDBMutableData Inheritance Object

Instances of this class encapsulate the data and priority at a location. It is used in transactions, and it is intended to be inspected and then updated to the desired data at that location.



Public Properties
 PropertyDefined By
  key : String
[read-only] The key name of this location, or null if it is the top-most location
DBMutableData
  priority : String
Indicates the current priority at this location.
DBMutableData
  value : *
[read-only] returns the data contained in this instance as native types.
DBMutableData
Public Methods
 MethodDefined By
  
DBMutableData
  
DBMutableData
  
setValue($value:*):void
Set the data at this location to the given value.
DBMutableData
Property Detail
keyproperty
key:String  [read-only]

The key name of this location, or null if it is the top-most location


Implementation
    public function get key():String
priorityproperty 
priority:String

Indicates the current priority at this location.


Implementation
    public function get priority():String
    public function set priority(value:String):void
valueproperty 
value:*  [read-only]

returns the data contained in this instance as native types. The possible types returned are:


Implementation
    public function get value():*
Method Detail
continueAbort()method
public function continueAbort():void

continueSuccess()method 
public function continueSuccess():void

setValue()method 
public function setValue($value:*):void

Set the data at this location to the given value. The native types accepted by this method for the value correspond to the JSON types:

Parameters

$value:*