Paket | org.osmf.net |
Sınıf | public class NetConnectionFactory |
Miras Alma | NetConnectionFactory NetConnectionFactoryBase EventDispatcher Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
Özellik | Tanımlayan: | ||
---|---|---|---|
connectionAttemptInterval : Number | NetConnectionFactory | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
timeout : Number | NetConnectionFactory |
Yöntem | Tanımlayan: | ||
---|---|---|---|
NetConnectionFactory(shareNetConnections:Boolean = true)
Constructor. | NetConnectionFactory | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder. | EventDispatcher | ||
Closes the given NetConnection. | NetConnectionFactoryBase | ||
Begins the process of creating a new NetConnection and establishing the connection. | NetConnectionFactoryBase | ||
Olay akışına bir olay gönderir. | EventDispatcher | ||
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder. | EventDispatcher | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
EventDispatcher nesnesinden bir dinleyiciyi kaldırır. | EventDispatcher | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object | ||
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder. | EventDispatcher |
Yöntem | Tanımlayan: | ||
---|---|---|---|
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 | özellik |
timeout | özellik |
NetConnectionFactory | () | Yapıcı |
public function NetConnectionFactory(shareNetConnections:Boolean = true)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Constructor.
ParametrelershareNetConnections:Boolean (default = true ) — Boolean specifying whether created NetConnections
may be shared or not. The default is true.
|
createNetConnection | () | yöntem |
protected function createNetConnection():NetConnection
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
The factory function for creating a NetConnection.
DöndürürNetConnection — An unconnected NetConnection.
|
İlgili API Öğeleri
createNetConnectionKey | () | yöntem |
protected function createNetConnectionKey(resource:URLResource):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
resource:URLResource — a URLResource
|
String — a String hash that uniquely identifies the NetConnection
|
createNetConnectionURLs | () | yöntem |
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.
Parametreler
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> |
Tue Jun 12 2018, 01:09 PM Z