Table of Contents

Class OutputFrameFork

Namespace
easyar

Output frame splitter. Used to transmit an output frame in parallel to multiple components. All members of this class are thread-safe.

OutputFrameFork

Methods

input

Input port.

void easyar_OutputFrameFork_input(easyar_OutputFrameFork * This, easyar_OutputFrameSink * * Return)
std::shared_ptr<OutputFrameSink> input()
public @Nonnull OutputFrameSink input()
fun input(): OutputFrameSink
- (easyar_OutputFrameSink *)input
public func input() -> OutputFrameSink
public virtual OutputFrameSink input()

Returns

OutputFrameSink

output

Output port.

void easyar_OutputFrameFork_output(easyar_OutputFrameFork * This, int index, easyar_OutputFrameSource * * Return)
std::shared_ptr<OutputFrameSource> output(int index)
public @Nonnull OutputFrameSource output(int index)
fun output(index: Int): OutputFrameSource
- (easyar_OutputFrameSource *)output:(int)index
public func output(_ index: Int32) -> OutputFrameSource
public virtual OutputFrameSource output(int index)

Parameters

index Int32

Returns

OutputFrameSource

outputCount

Number of outputs.

int easyar_OutputFrameFork_outputCount(easyar_OutputFrameFork * This)
int outputCount()
public int outputCount()
fun outputCount(): Int
- (int)outputCount
public func outputCount() -> Int32
public virtual int outputCount()

Returns

Int32

create

Create.

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

Parameters

outputCount Int32

Returns

OutputFrameFork