패키지 | org.osmf.net.metrics |
클래스 | public class MetricFactory |
상속 | MetricFactory Object |
하위 클래스 | DefaultMetricFactory |
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | 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.
관련 API 요소
org.osmf.net.abr.DefaultMetricFactory
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
numItems : Number [읽기 전용]
The number of items
| MetricFactory |
메서드 | 정의 주체 | ||
---|---|---|---|
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 | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
Removes the specified MetricFactoryItem from the factory. | MetricFactory | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
numItems | 속성 |
MetricFactory | () | 생성자 |
public function MetricFactory(qosInfoHistory:QoSInfoHistory)
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Constructor.
매개 변수qosInfoHistory:QoSInfoHistory |
addItem | () | 메서드 |
public function addItem(item:MetricFactoryItem):void
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | 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.
매개 변수
item:MetricFactoryItem — The MetricFactoryItem to add.
|
오류
ArgumentError — If the argument is null or if the argument
has a null type field.
|
buildMetric | () | 메서드 |
public function buildMetric(type:String, ... args):MetricBase
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Produces a MetricBase.
매개 변수
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
|
오류
Error — If the type is not registered with any MetricFactoryItem.
|
getItem | () | 메서드 |
public function getItem(type:String):MetricFactoryItem
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
The item corresponding to the specified metric type
매개 변수
type:String |
MetricFactoryItem — The item corresponding to the specified type or null if no such item exists
|
getItems | () | 메서드 |
public function getItems():Vector.<MetricFactoryItem>
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
The registered items
반환값Vector.<MetricFactoryItem> — A new Vector.<MetricFactoryItem> containing the registered items
|
removeItem | () | 메서드 |
public function removeItem(item:MetricFactoryItem):void
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Removes the specified MetricFactoryItem from the factory. If no such MetricFactoryItem exists in this factory, does nothing.
매개 변수
item:MetricFactoryItem — The MetricFactoryItem to remove.
|
오류
ArgumentError — If the argument is null or if the argument
has a null type field.
|
Tue Jun 12 2018, 03:17 PM Z