Pakiet | org.osmf.net.metrics |
Klasa | public class MetricBase |
Dziedziczenie | MetricBase Object |
Podklasy | ActualBitrateMetric, AvailableQualityLevelsMetric, BandwidthMetric, BufferFragmentsMetric, BufferLengthMetric, BufferOccupationRatioMetric, CurrentStatusMetric, DroppedFPSMetric, EmptyBufferMetric, FPSMetric, FragmentCountMetric, RecentSwitchMetric |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 2.0 |
Wersje środowiska wykonawczego: | 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.
Powiązane elementy interfejsu API
org.osmf.net.abr.MetricValue
org.osmf.net.abr.QoSInfoHistory
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
type : String [tylko do odczytu]
The type of the metric
| MetricBase | ||
value : MetricValue [tylko do odczytu]
The value of this metric
If the value has already been computed for the most recent QoSInfo,
return the cached result. | MetricBase |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
qosInfoHistory : QoSInfoHistory [tylko do odczytu]
The QoSInfoHistory object used to compute the metric. | MetricBase |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
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 | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Computes the value of this metric
Subclasses must override to provide a specific implementation. | MetricBase |
qosInfoHistory | właściwość |
qosInfoHistory:QoSInfoHistory
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 2.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
The QoSInfoHistory object used to compute the metric. It is only accessible to sublcasses.
Implementacja
protected function get qosInfoHistory():QoSInfoHistory
type | właściwość |
value | właściwość |
value:MetricValue
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 2.0 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get value():MetricValue
MetricBase | () | Konstruktor |
public function MetricBase(qosInfoHistory:QoSInfoHistory, type:String)
Constructor.
ParametryqosInfoHistory:QoSInfoHistory — The QoSInfoHistory to be used for computing the metric
| |
type:String — The type of the metric
|
getValue | () | metoda |
public function getValue():MetricValue
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 2.0 |
Wersje środowiska wykonawczego: | 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
ZwracaMetricValue |
getValueForced | () | metoda |
protected function getValueForced():MetricValue
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 2.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Computes the value of this metric Subclasses must override to provide a specific implementation.
ZwracaMetricValue — The MetricValue result of the computation
|
Tue Jun 12 2018, 12:06 PM Z