Class InputFrameFork
- Namespace
- easyar
Frame-Distributor für Eingaben. Überträgt einen Eingabeframe parallel an mehrere Komponenten. Alle Mitglieder dieser Klasse sind Thread-sicher.
InputFrameFork
Methoden
input
Eingabeport.
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()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameSink |
output
Ausgabeport.
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)
Parameter
| Name | Typ | Beschreibung |
|---|---|---|
| index | Int32 |
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameSource |
outputCount
Anzahl der Ausgänge.
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()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| Int32 |
create
Erstellen.
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)
Parameter
| Name | Typ | Beschreibung |
|---|---|---|
| outputCount | Int32 |
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameFork |