Class OutputFrameFork
- Espace de noms
- easyar
Séparateur de trames de sortie. Utilisé pour transmettre une trame de sortie en parallèle à plusieurs composants. Tous les membres de cette classe sont thread-safe.
OutputFrameFork
Méthodes
input
Port d'entrée
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()
Retours
| Type | Description |
|---|---|
| OutputFrameSink |
output
Port de sortie.
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)
Paramètres
| Nom | Type | Description |
|---|---|---|
| index | Int32 |
Retours
| Type | Description |
|---|---|
| OutputFrameSource |
outputCount
nombre de sorties.
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()
Retours
| Type | Description |
|---|---|
| Int32 |
create
créer
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)
Paramètres
| Nom | Type | Description |
|---|---|---|
| outputCount | Int32 |
Retours
| Type | Description |
|---|---|
| OutputFrameFork |