Class InputFrameFork
- 名前空間
- easyar
入力フレームスプリッタ。 1つの入力フレームを複数のコンポーネントに並列的に送信するために使用します。 このクラスのすべてのメンバーはスレッドセーフです。
InputFrameFork
メソッド
input
入力ポート。
void easyar_InputFrameFork_input(easyar_InputFrameFork * This, easyar_InputFrameSink * * Return)
std::shared_ptr<InputFrameSink> input()
public @Nonnull InputFrameSink input()
fun input(): InputFrameSink
- (easyar_InputFrameSink *)input
public func input() -> InputFrameSink
public virtual InputFrameSink input()
戻り値
| 型 | 説明 |
|---|---|
| InputFrameSink |
output
出力ポート。
void easyar_InputFrameFork_output(easyar_InputFrameFork * This, int index, easyar_InputFrameSource * * Return)
std::shared_ptr<InputFrameSource> output(int index)
public @Nonnull InputFrameSource output(int index)
fun output(index: Int): InputFrameSource
- (easyar_InputFrameSource *)output:(int)index
public func output(_ index: Int32) -> InputFrameSource
public virtual InputFrameSource output(int index)
パラメーター
| 名前 | 型 | 説明 |
|---|---|---|
| index | Int32 |
戻り値
| 型 | 説明 |
|---|---|
| InputFrameSource |
outputCount
出力数。
int easyar_InputFrameFork_outputCount(easyar_InputFrameFork * This)
int outputCount()
public int outputCount()
fun outputCount(): Int
- (int)outputCount
public func outputCount() -> Int32
public virtual int outputCount()
戻り値
| 型 | 説明 |
|---|---|
| Int32 |
create
作成。
void easyar_InputFrameFork_create(int outputCount, easyar_InputFrameFork * * Return)
static std::shared_ptr<InputFrameFork> create(int outputCount)
public static @Nonnull InputFrameFork create(int outputCount)
companion object fun create(outputCount: Int): InputFrameFork
+ (easyar_InputFrameFork *)create:(int)outputCount
public static func create(_ outputCount: Int32) -> InputFrameFork
public static InputFrameFork create(int outputCount)
パラメーター
| 名前 | 型 | 説明 |
|---|---|---|
| outputCount | Int32 |
戻り値
| 型 | 説明 |
|---|---|
| InputFrameFork |