Pakket | org.osmf.net.metrics |
Klasse | public class MetricBase |
Overerving | MetricBase Object |
Subklassen | ActualBitrateMetric, AvailableQualityLevelsMetric, BandwidthMetric, BufferFragmentsMetric, BufferLengthMetric, BufferOccupationRatioMetric, CurrentStatusMetric, DroppedFPSMetric, EmptyBufferMetric, FPSMetric, FragmentCountMetric, RecentSwitchMetric |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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.
Verwante API-elementen
org.osmf.net.abr.MetricValue
org.osmf.net.abr.QoSInfoHistory
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
type : String [alleen-lezen]
The type of the metric
| MetricBase | ||
value : MetricValue [alleen-lezen]
The value of this metric
If the value has already been computed for the most recent QoSInfo,
return the cached result. | MetricBase |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
qosInfoHistory : QoSInfoHistory [alleen-lezen]
The QoSInfoHistory object used to compute the metric. | MetricBase |
Methode | Gedefinieerd door | ||
---|---|---|---|
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 | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Methode | Gedefinieerd door | ||
---|---|---|---|
Computes the value of this metric
Subclasses must override to provide a specific implementation. | MetricBase |
qosInfoHistory | eigenschap |
qosInfoHistory:QoSInfoHistory
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
The QoSInfoHistory object used to compute the metric. It is only accessible to sublcasses.
Implementatie
protected function get qosInfoHistory():QoSInfoHistory
type | eigenschap |
value | eigenschap |
value:MetricValue
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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.
Implementatie
public function get value():MetricValue
MetricBase | () | Constructor |
public function MetricBase(qosInfoHistory:QoSInfoHistory, type:String)
Constructor.
ParametersqosInfoHistory:QoSInfoHistory — The QoSInfoHistory to be used for computing the metric
| |
type:String — The type of the metric
|
getValue | () | methode |
public function getValue():MetricValue
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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
Geretourneerde waardeMetricValue |
getValueForced | () | methode |
protected function getValueForced():MetricValue
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Computes the value of this metric Subclasses must override to provide a specific implementation.
Geretourneerde waardeMetricValue — The MetricValue result of the computation
|
Wed Jun 13 2018, 11:42 AM Z