InputFrameFork Class¶
Description¶
Input frame fork.
It is used to branch and transfer input frame to multiple components in parallel.
All members of this class is thread-safe.
input¶
Input port.
- C
 void easyar_InputFrameFork_input(easyar_InputFrameFork * This, easyar_InputFrameSink * * Return)
- C++
 std::shared_ptr<InputFrameSink> input()
- 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¶
Output port.
- C
 void easyar_InputFrameFork_output(easyar_InputFrameFork * This, int index, easyar_InputFrameSource * * Return)
- C++
 std::shared_ptr<InputFrameSource> output(int index)
- 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¶
Output count.
- C
 int easyar_InputFrameFork_outputCount(easyar_InputFrameFork * 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_InputFrameFork_create(int outputCount, easyar_InputFrameFork * * Return)
- C++
 static std::shared_ptr<InputFrameFork> create(int outputCount)
- 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)