Paquete | org.osmf.net.metrics |
Clase | public class MetricFactory |
Herencia | MetricFactory Object |
Subclases | DefaultMetricFactory |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The factory operation produces a MetricBase as output.
The MetricFactory maintains a list of MetricFactoryItem objects, each of which encapsulates all the information necessary to create a specific metric.
Elementos de API relacionados
org.osmf.net.abr.DefaultMetricFactory
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
numItems : Number [solo lectura]
The number of items
| MetricFactory |
Método | Definido por | ||
---|---|---|---|
MetricFactory(qosInfoHistory:QoSInfoHistory)
Constructor. | MetricFactory | ||
Adds the specified MetricFactoryItem to the factory. | MetricFactory | ||
Produces a MetricBase. | MetricFactory | ||
The item corresponding to the specified metric type
| MetricFactory | ||
The registered items
| MetricFactory | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Removes the specified MetricFactoryItem from the factory. | MetricFactory | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
numItems | propiedad |
MetricFactory | () | Información sobre |
public function MetricFactory(qosInfoHistory:QoSInfoHistory)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Constructor.
ParámetrosqosInfoHistory:QoSInfoHistory |
addItem | () | método |
public function addItem(item:MetricFactoryItem):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Adds the specified MetricFactoryItem to the factory. If a MetricFactoryItem with the same ID already exists in this factory, the new MetricFactoryItem object replaces it.
Parámetros
item:MetricFactoryItem — The MetricFactoryItem to add.
|
Emite
ArgumentError — If the argument is null or if the argument
has a null type field.
|
buildMetric | () | método |
public function buildMetric(type:String, ... args):MetricBase
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Produces a MetricBase.
Parámetros
type:String — The type of the metric to create.
| |
... args — The arguments to be passed to the metric's constructor (except the qosInfoHistory)
|
MetricBase — A new MetricBase of the desired type with the specified parameters
|
Emite
Error — If the type is not registered with any MetricFactoryItem.
|
getItem | () | método |
public function getItem(type:String):MetricFactoryItem
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The item corresponding to the specified metric type
Parámetros
type:String |
MetricFactoryItem — The item corresponding to the specified type or null if no such item exists
|
getItems | () | método |
public function getItems():Vector.<MetricFactoryItem>
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The registered items
Valor devueltoVector.<MetricFactoryItem> — A new Vector.<MetricFactoryItem> containing the registered items
|
removeItem | () | método |
public function removeItem(item:MetricFactoryItem):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Removes the specified MetricFactoryItem from the factory. If no such MetricFactoryItem exists in this factory, does nothing.
Parámetros
item:MetricFactoryItem — The MetricFactoryItem to remove.
|
Emite
ArgumentError — If the argument is null or if the argument
has a null type field.
|
Tue Jun 12 2018, 02:12 PM Z