FeedbackFrameFork Class

Description

Feedback frame fork.

It is used to branch and transfer feedback frame to multiple components in parallel.

All members of this class is thread-safe.

input

Input port.

C

void easyar_FeedbackFrameFork_input(easyar_FeedbackFrameFork * This, easyar_FeedbackFrameSink * * Return)

C++

std::shared_ptr<FeedbackFrameSink> input()

Java

public @Nonnull FeedbackFrameSink input()

Kotlin

fun input(): FeedbackFrameSink

Objective-C

- (easyar_FeedbackFrameSink *)input

Swift

public func input() -> FeedbackFrameSink

C#

public virtual FeedbackFrameSink input()

output

Output port.

C

void easyar_FeedbackFrameFork_output(easyar_FeedbackFrameFork * This, int index, easyar_FeedbackFrameSource * * Return)

C++

std::shared_ptr<FeedbackFrameSource> output(int index)

Java

public @Nonnull FeedbackFrameSource output(int index)

Kotlin

fun output(index: Int): FeedbackFrameSource

Objective-C

- (easyar_FeedbackFrameSource *)output:(int)index

Swift

public func output(_ index: Int32) -> FeedbackFrameSource

C#

public virtual FeedbackFrameSource output(int index)

outputCount

Output count.

C

int easyar_FeedbackFrameFork_outputCount(easyar_FeedbackFrameFork * This)

C++

int outputCount()

Java

public int outputCount()

Kotlin

fun outputCount(): Int

Objective-C

- (int)outputCount

Swift

public func outputCount() -> Int32

C#

public virtual int outputCount()

create

Creates an instance.

C

void easyar_FeedbackFrameFork_create(int outputCount, easyar_FeedbackFrameFork * * Return)

C++

static std::shared_ptr<FeedbackFrameFork> create(int outputCount)

Java

public static @Nonnull FeedbackFrameFork create(int outputCount)

Kotlin

companion object fun create(outputCount: Int): FeedbackFrameFork

Objective-C

+ (easyar_FeedbackFrameFork *)create:(int)outputCount

Swift

public static func create(_ outputCount: Int32) -> FeedbackFrameFork

C#

public static FeedbackFrameFork create(int outputCount)