| Pacchetto | com.adobe.gravity.framework |
| Interfaccia | public interface IBundle |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
| Proprietà | Definito da | ||
|---|---|---|---|
| bundleId : int [sola lettura]
The identifier for this specific bundle. | IBundle | ||
| domain : String [sola lettura] If the bundle is shared, the name of the shared domain. | IBundle | ||
| location : String [sola lettura] The location from which the bundle was retrieved. | IBundle | ||
| parentDomain : String [sola lettura] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
| properties : Object [sola lettura] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
| registeredServices : Array [sola lettura] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
| servicesInUse : Array [sola lettura] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
| state : int [sola lettura] The state of the bundle. | IBundle | ||
| Metodo | Definito da | ||
|---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle | ||
bundleId | proprietà |
bundleId:int [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
The identifier for this specific bundle. This is assigned at runtime by the framework and may be different on each run.
Implementazione
public function get bundleId():intdomain | proprietà |
domain:String [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Implementazione
public function get domain():Stringlocation | proprietà |
location:String [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Implementazione
public function get location():StringparentDomain | proprietà |
parentDomain:String [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
Implementazione
public function get parentDomain():Stringproperties | proprietà |
properties:Object [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
Implementazione
public function get properties():ObjectregisteredServices | proprietà |
registeredServices:Array [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically.
Implementazione
public function get registeredServices():ArrayservicesInUse | proprietà |
servicesInUse:Array [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
Implementazione
public function get servicesInUse():Arraystate | proprietà |
state:int [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
Implementazione
public function get state():intElementi API correlati
start | () | metodo |
public function start():com.adobe.gravity.utility.async:IToken| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
Start the bundle. The bundle will not immediately be started on return; the returned token can be used to add success or failure handlers to be executed when the bundle has successfully started or to handle a fault during the bundle start process.
Restituiscecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
stop | () | metodo |
public function stop():com.adobe.gravity.utility.async:IToken| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
Stop the bundle. The bundle will not immediately be stopped on return; the returned token can be used to add success or failure handlers to be executed when the bundle has successfully stopped or to handle a fault during the bundle stop process.
Restituiscecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
uninstall | () | metodo |
public function uninstall():com.adobe.gravity.utility.async:IToken| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Versioni runtime: | AIR 1.1, Flash Player 9 |
Uninstall the bundle. The bundle will not immediately be uninstalled on return; the returned token can be used to add success and failure handlers to be executed when the bundle has successfully been uninstalled or to handle a fault during the bundle uninstall process.
Restituiscecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
Tue Jun 12 2018, 02:44 PM Z