Table of Contents

Class InputFrameFork

命名空间
easyar

输入帧分流器。 用于将一个输入帧并行传输到多个组件中。 本类的所有成员都是线程安全的。

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