Table of Contents

Class FeedbackFrameFork

命名空间
easyar

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

FeedbackFrameFork

方法

input

输入端口。

void easyar_FeedbackFrameFork_input(easyar_FeedbackFrameFork * This, easyar_FeedbackFrameSink * * Return)
std::shared_ptr<FeedbackFrameSink> input()
public @Nonnull FeedbackFrameSink input()
fun input(): FeedbackFrameSink
- (easyar_FeedbackFrameSink *)input
public func input() -> FeedbackFrameSink
public virtual FeedbackFrameSink input()

返回

类型 描述
FeedbackFrameSink

output

输出端口。

void easyar_FeedbackFrameFork_output(easyar_FeedbackFrameFork * This, int index, easyar_FeedbackFrameSource * * Return)
std::shared_ptr<FeedbackFrameSource> output(int index)
public @Nonnull FeedbackFrameSource output(int index)
fun output(index: Int): FeedbackFrameSource
- (easyar_FeedbackFrameSource *)output:(int)index
public func output(_ index: Int32) -> FeedbackFrameSource
public virtual FeedbackFrameSource output(int index)

参数

名称 类型 描述
index Int32

返回

类型 描述
FeedbackFrameSource

outputCount

输出个数。

int easyar_FeedbackFrameFork_outputCount(easyar_FeedbackFrameFork * This)
int outputCount()
public int outputCount()
fun outputCount(): Int
- (int)outputCount
public func outputCount() -> Int32
public virtual int outputCount()

返回

类型 描述
Int32

create

创建。

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

参数

名称 类型 描述
outputCount Int32

返回

类型 描述
FeedbackFrameFork