Pakket | org.osmf.net |
Klasse | public class NetConnectionFactoryBase |
Overerving | NetConnectionFactoryBase EventDispatcher Object |
Subklassen | NetConnectionFactory |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | NetConnectionFactoryBase | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | EventDispatcher | ||
Closes the given NetConnection. | NetConnectionFactoryBase | ||
Begins the process of creating a new NetConnection and establishing the connection. | NetConnectionFactoryBase | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Gebeurtenis | Overzicht | Gedefinieerd door | ||
---|---|---|---|---|
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de besturingssysteemfocus krijgt en actief wordt. | EventDispatcher | |||
Dispatched when the factory has successfully created and connected a NetConnection. | NetConnectionFactoryBase | |||
Dispatched when the factory has failed to create and connect a NetConnection. | NetConnectionFactoryBase | |||
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de systeemfocus verliest en inactief wordt. | EventDispatcher |
NetConnectionFactoryBase | () | Constructor |
public function NetConnectionFactoryBase()
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Constructor.
closeNetConnection | () | methode |
public function closeNetConnection(netConnection:NetConnection):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Closes the given NetConnection. The client of a NetConnectionFactoryBase should use this method to close NetConnections (as opposed to NetConnection.close) because some NetConnectionFactoryBase subclasses might want fine-grained control over the lifetime of the NetConnections they create.
Parameters
netConnection:NetConnection — The NetConnection to close.
|
create | () | methode |
public function create(resource:URLResource):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Begins the process of creating a new NetConnection and establishing the connection. Because the connection process may be asynchronous, this method does not return a result. Instead, once the NetConnection is created and the connection either succeeds or fails, a NetConnectionFactoryEvent will be dispatched.
Subclasses must override this method.
Parameters
resource:URLResource — The URLResource that requires the NetConnection.
|
creationComplete | Gebeurtenis |
org.osmf.events.NetConnectionFactoryEvent
eigenschap NetConnectionFactoryEvent.type =
org.osmf.events.NetConnectionFactoryEvent.CREATION_COMPLETE
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Dispatched when the factory has successfully created and connected a NetConnection.
The NetConnectionFactoryEvent.CREATION_COMPLETE constant defines the value of the type property of the event object for a NetConnectionFactoryEvent when the the class has succeeded in establishing a connected NetConnection.creationError | Gebeurtenis |
org.osmf.events.NetConnectionFactoryEvent
eigenschap NetConnectionFactoryEvent.type =
org.osmf.events.NetConnectionFactoryEvent.CREATION_ERROR
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Dispatched when the factory has failed to create and connect a NetConnection.
The NetConnectionFactoryEvent.CREATION_ERROR constant defines the value of the type property of the event object for a NetConnectionFactoryEvent when the the class has failed at establishing a connected NetConnection.Wed Jun 13 2018, 11:42 AM Z