Pacchetto | spark.managers |
Classe | public class PersistenceManager |
Ereditarietà | PersistenceManager Object |
Implementa | IPersistenceManager |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | AIR 2.5 |
When storing values using the manager, it is important that all values can be properly be written to a shared object. Complex objects that store classes or non-standard flash primitives must implement flash.net.IExternalizable interface to work properly. Saving incompatible objects does not cause an RTE, but creates undefined behavior when the data is read back.
Elementi API correlati
Metodo | Definito da | ||
---|---|---|---|
Constructor. | PersistenceManager | ||
Clears all the data that is being stored by the persistence
manager. | PersistenceManager | ||
Returns the value of a property stored in the persistence manager. | PersistenceManager | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Initializes the persistence manager. | PersistenceManager | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Flushes the data being managed by the persistence manager to
disk, or to another external storage file. | PersistenceManager | ||
Stores a value in the persistence manager. | PersistenceManager | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
PersistenceManager | () | Funzione di costruzione |
public function PersistenceManager()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | AIR 2.5 |
Constructor.
clear | () | metodo |
public function clear():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | AIR 2.5 |
Clears all the data that is being stored by the persistence manager.
getProperty | () | metodo |
public function getProperty(key:String):Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | AIR 2.5 |
Returns the value of a property stored in the persistence manager. Properties are saved as key:value pairs.
Parametri
key:String — The property key.
|
Object — The value of a property stored in the persistence manager.
|
load | () | metodo |
save | () | metodo |
setProperty | () | metodo |
public function setProperty(key:String, value:Object):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.5 |
Versioni runtime: | AIR 2.5 |
Stores a value in the persistence manager. Properties are saved as key:value pairs.
Parametri
key:String — The key to use to store the value.
| |
value:Object — The value object to store.
|
Tue Jun 12 2018, 02:44 PM Z