InputFrameFork Class¶
Description¶
输入帧分流器。
用于将一个输入帧并行传输到多个组件中。
本类的所有成员都是线程安全的。
input¶
输入端口。
- C
- void easyar_InputFrameFork_input(easyar_InputFrameFork * This, easyar_InputFrameSink * * Return) 
- C++17
- std::shared_ptr<InputFrameSink> input() 
- C++03(Deprecated)
- void input(InputFrameSink * * Return) 
- Java
- public @Nonnull InputFrameSink input() 
- Kotlin
- fun input(): InputFrameSink 
- Objective-C
- - (easyar_InputFrameSink *)input 
- Swift
- public func input() -> InputFrameSink 
- C#
- public virtual InputFrameSink input() 
output¶
输出端口。
- C
- void easyar_InputFrameFork_output(easyar_InputFrameFork * This, int index, easyar_InputFrameSource * * Return) 
- C++17
- std::shared_ptr<InputFrameSource> output(int index) 
- C++03(Deprecated)
- void output(int index, InputFrameSource * * Return) 
- Java
- public @Nonnull InputFrameSource output(int index) 
- Kotlin
- fun output(index: Int): InputFrameSource 
- Objective-C
- - (easyar_InputFrameSource *)output:(int)index 
- Swift
- public func output(_ index: Int32) -> InputFrameSource 
- C#
- public virtual InputFrameSource output(int index) 
outputCount¶
输出个数。
- C
- int easyar_InputFrameFork_outputCount(easyar_InputFrameFork * This) 
- C++17
- int outputCount() 
- C++03(Deprecated)
- 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¶
创建。
- C
- void easyar_InputFrameFork_create(int outputCount, easyar_InputFrameFork * * Return) 
- C++17
- static std::shared_ptr<InputFrameFork> create(int outputCount) 
- C++03(Deprecated)
- static void create(int outputCount, InputFrameFork * * Return) 
- Java
- public static @Nonnull InputFrameFork create(int outputCount) 
- Kotlin
- companion object fun create(outputCount: Int): InputFrameFork 
- Objective-C
- + (easyar_InputFrameFork *)create:(int)outputCount 
- Swift
- public static func create(_ outputCount: Int32) -> InputFrameFork 
- C#
- public static InputFrameFork create(int outputCount)