C# Class SoundLibrary.Pipe.Pipe

キューの間に入って処理を行うパイプ。
Afficher le fichier Open project: ufcpp/UfcppSample

Protected Properties

Свойство Type Description
input Queue
output Queue

Méthodes publiques

Méthode Description
Flush ( ) : void

キューの間に処理なしで、とにかく input 内のデータをフラッシュする。

Pipe ( Queue input, Queue output ) : System
Process ( ) : void

input キューと output キューの間に挟む処理。 デフォルトは素通し。

Method Details

Flush() public méthode

キューの間に処理なしで、とにかく input 内のデータをフラッシュする。
public Flush ( ) : void
Résultat void

Pipe() public méthode

public Pipe ( Queue input, Queue output ) : System
input Queue
output Queue
Résultat System

Process() public méthode

input キューと output キューの間に挟む処理。 デフォルトは素通し。
public Process ( ) : void
Résultat void

Property Details

input protected_oe property

protected Queue,SoundLibrary.Pipe input
Résultat Queue

output protected_oe property

protected Queue,SoundLibrary.Pipe output
Résultat Queue