Pacchetto | org.osmf.net.metrics |
Classe | public class MetricBase |
Ereditarietà | MetricBase Object |
Sottoclassi | ActualBitrateMetric, AvailableQualityLevelsMetric, BandwidthMetric, BufferFragmentsMetric, BufferLengthMetric, BufferOccupationRatioMetric, CurrentStatusMetric, DroppedFPSMetric, EmptyBufferMetric, FPSMetric, FragmentCountMetric, RecentSwitchMetric |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 2.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
MetricBase is a base class for metrics used for Adaptive Bitrate. A metric's value is computed based on QoSInfoHistory. A metric is identified by its type.
The base class handles the caching of the computed value. The subclasses should only implement the actual computation.
All subclasses should have qosInfoHistory
as the first parameter in the constructor.
All subclasses must set the _type
in the constructor.
Elementi API correlati
org.osmf.net.abr.MetricValue
org.osmf.net.abr.QoSInfoHistory
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
type : String [sola lettura]
The type of the metric
| MetricBase | ||
value : MetricValue [sola lettura]
The value of this metric
If the value has already been computed for the most recent QoSInfo,
return the cached result. | MetricBase |
Proprietà | Definito da | ||
---|---|---|---|
qosInfoHistory : QoSInfoHistory [sola lettura]
The QoSInfoHistory object used to compute the metric. | MetricBase |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | MetricBase | ||
The value of this metric
If the value has already been computed for the most recent QoSInfo,
return the cached result.
This method is internal so it can be overriden by metric mockers,
for testing purposes
| MetricBase | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Metodo | Definito da | ||
---|---|---|---|
Computes the value of this metric
Subclasses must override to provide a specific implementation. | MetricBase |
qosInfoHistory | proprietà |
qosInfoHistory:QoSInfoHistory
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 2.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The QoSInfoHistory object used to compute the metric. It is only accessible to sublcasses.
Implementazione
protected function get qosInfoHistory():QoSInfoHistory
type | proprietà |
value | proprietà |
value:MetricValue
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 2.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The value of this metric If the value has already been computed for the most recent QoSInfo, return the cached result.
Implementazione
public function get value():MetricValue
MetricBase | () | Funzione di costruzione |
public function MetricBase(qosInfoHistory:QoSInfoHistory, type:String)
Constructor.
ParametriqosInfoHistory:QoSInfoHistory — The QoSInfoHistory to be used for computing the metric
| |
type:String — The type of the metric
|
getValue | () | metodo |
public function getValue():MetricValue
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 2.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The value of this metric If the value has already been computed for the most recent QoSInfo, return the cached result. This method is internal so it can be overriden by metric mockers, for testing purposes
RestituisceMetricValue |
getValueForced | () | metodo |
protected function getValueForced():MetricValue
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 2.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Computes the value of this metric Subclasses must override to provide a specific implementation.
RestituisceMetricValue — The MetricValue result of the computation
|
Tue Jun 12 2018, 02:44 PM Z