Package | org.osmf.net |
Class | public class NetConnectionFactory |
Inheritance | NetConnectionFactory NetConnectionFactoryBase EventDispatcher Object |
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
NetConnectionFactory is stateless. Multiple parallel create() requests may be made. A hash of the resource URL is used as a key to determine which NetConnections may be shared.
Property | Defined By | ||
---|---|---|---|
connectionAttemptInterval : Number | NetConnectionFactory | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
timeout : Number | NetConnectionFactory |
Method | Defined By | ||
---|---|---|---|
NetConnectionFactory(shareNetConnections:Boolean = true)
Constructor. | NetConnectionFactory | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | EventDispatcher | ||
Closes the given NetConnection. | NetConnectionFactoryBase | ||
Begins the process of creating a new NetConnection and establishing the connection. | NetConnectionFactoryBase | ||
Dispatches an event into the event flow. | EventDispatcher | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | EventDispatcher | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Removes a listener from the EventDispatcher object. | EventDispatcher | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of
its ancestors for the specified event type. | EventDispatcher |
Method | Defined By | ||
---|---|---|---|
The factory function for creating a NetConnection. | NetConnectionFactory | ||
Generates a key to uniquely identify each connection. | NetConnectionFactory | ||
createNetConnectionURLs(url:String, urlIncludesFMSApplicationInstance:Boolean = false):Vector.<String>
Assembles a vector of URLs that should be used during the connection
attempt. | NetConnectionFactory |
connectionAttemptInterval | property |
timeout | property |
NetConnectionFactory | () | Constructor |
public function NetConnectionFactory(shareNetConnections:Boolean = true)
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Constructor.
ParametersshareNetConnections:Boolean (default = true ) — Boolean specifying whether created NetConnections
may be shared or not. The default is true.
|
createNetConnection | () | method |
protected function createNetConnection():NetConnection
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
The factory function for creating a NetConnection.
ReturnsNetConnection — An unconnected NetConnection.
|
Related API Elements
createNetConnectionKey | () | method |
protected function createNetConnectionKey(resource:URLResource):String
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Generates a key to uniquely identify each connection. This key is used to determine whether a particularly URLResource can share an existing NetConnection. If the keys for two URLResources are identical, then they can share the same NetConnection. By default, this method returns a String consisting of the protocol, host, port, and FMS application name.
Parameters
resource:URLResource — a URLResource
|
String — a String hash that uniquely identifies the NetConnection
|
createNetConnectionURLs | () | method |
protected function createNetConnectionURLs(url:String, urlIncludesFMSApplicationInstance:Boolean = false):Vector.<String>
Assembles a vector of URLs that should be used during the connection attempt. The default protocols attempted when a "rtmp" connection is specified are "rtmp", "rtmps", and "rtmpt". When a "rtmpe" connection is requested, both "rtmpe" and "rtmpte" protocols are attempted. When "rtmps","rtmpt" or "rtmpte" are requested, only those protocols are attempted. The default ports are 1935, 443 and 80. If a specific port is specified in the URL, then only that port is used. Subclasses can override this method to change this default behavior.
Parameters
url:String — The URL to be loaded.
| |
urlIncludesFMSApplicationInstance:Boolean (default = false ) — Indicates whether the URL includes
the FMS application instance name. See StreamingURLResource for more info.
|
Vector.<String> |
Thu Dec 6 2018, 01:12 PM -08:00