Pacote | com.adobe.gravity.framework |
Interface | public interface IBundle |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
Propriedade | Definido por | ||
---|---|---|---|
bundleId : int [somente leitura]
The identifier for this specific bundle. | IBundle | ||
domain : String [somente leitura] If the bundle is shared, the name of the shared domain. | IBundle | ||
location : String [somente leitura] The location from which the bundle was retrieved. | IBundle | ||
parentDomain : String [somente leitura] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
properties : Object [somente leitura] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
registeredServices : Array [somente leitura] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
servicesInUse : Array [somente leitura] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
state : int [somente leitura] The state of the bundle. | IBundle |
Método | Definido por | ||
---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle |
bundleId | propriedade |
bundleId:int
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de 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.
Implementação
public function get bundleId():int
domain | propriedade |
domain:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Implementação
public function get domain():String
location | propriedade |
location:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Implementação
public function get location():String
parentDomain | propriedade |
parentDomain:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
Implementação
public function get parentDomain():String
properties | propriedade |
properties:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
Implementação
public function get properties():Object
registeredServices | propriedade |
registeredServices:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de 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.
Implementação
public function get registeredServices():Array
servicesInUse | propriedade |
servicesInUse:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
Implementação
public function get servicesInUse():Array
state | propriedade |
state:int
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
Implementação
public function get state():int
Elementos da API relacionados
start | () | método |
public function start():com.adobe.gravity.utility.async:IToken
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de 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.
Retornacom.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 | () | método |
public function stop():com.adobe.gravity.utility.async:IToken
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de 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.
Retornacom.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 | () | método |
public function uninstall():com.adobe.gravity.utility.async:IToken
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de 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.
Retornacom.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.
|
Wed Jun 13 2018, 11:10 AM Z