Table of Contents

Class InputFrameFork

네임스페이스
easyar

입력 프레임 분배기를 입력합니다. 하나의 입력 프레임을 여러 컴포넌트에 병렬로 분배하는 용도입니다. 본 클래스의 모든 멤버는 thread-safe합니다.

InputFrameFork

메서드

input

입력 포트.

void easyar_InputFrameFork_input(easyar_InputFrameFork * This, easyar_InputFrameSink * * Return)
std::shared_ptr<InputFrameSink> input()
public @Nonnull InputFrameSink input()
fun input(): InputFrameSink
- (easyar_InputFrameSink *)input
public func input() -> InputFrameSink
public virtual InputFrameSink input()

반환 값

형식 설명
InputFrameSink

output

출력 포트.

void easyar_InputFrameFork_output(easyar_InputFrameFork * This, int index, easyar_InputFrameSource * * Return)
std::shared_ptr<InputFrameSource> output(int index)
public @Nonnull InputFrameSource output(int index)
fun output(index: Int): InputFrameSource
- (easyar_InputFrameSource *)output:(int)index
public func output(_ index: Int32) -> InputFrameSource
public virtual InputFrameSource output(int index)

매개 변수

이름 형식 설명
index Int32

반환 값

형식 설명
InputFrameSource

outputCount

출력 개수

int easyar_InputFrameFork_outputCount(easyar_InputFrameFork * This)
int outputCount()
public int outputCount()
fun outputCount(): Int
- (int)outputCount
public func outputCount() -> Int32
public virtual int outputCount()

반환 값

형식 설명
Int32

create

생성.

void easyar_InputFrameFork_create(int outputCount, easyar_InputFrameFork * * Return)
static std::shared_ptr<InputFrameFork> create(int outputCount)
public static @Nonnull InputFrameFork create(int outputCount)
companion object fun create(outputCount: Int): InputFrameFork
+ (easyar_InputFrameFork *)create:(int)outputCount
public static func create(_ outputCount: Int32) -> InputFrameFork
public static InputFrameFork create(int outputCount)

매개 변수

이름 형식 설명
outputCount Int32

반환 값

형식 설명
InputFrameFork