C# Class SoundLibrary.Pipe.Pipe

キューの間に入って処理を行うパイプ。
显示文件 Open project: ufcpp/UfcppSample

Protected Properties

Property Type Description
input Queue
output Queue

Public Methods

Method Description
Flush ( ) : void

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

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

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

Method Details

Flush() public method

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

Pipe() public method

public Pipe ( Queue input, Queue output ) : System
input Queue
output Queue
return System

Process() public method

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

Property Details

input protected_oe property

protected Queue,SoundLibrary.Pipe input
return Queue

output protected_oe property

protected Queue,SoundLibrary.Pipe output
return Queue