SoundRecorder.SetProcessingInterval Method

SFML.Net

SoundRecorderSetProcessingInterval Method
The processing interval controls the period between calls to the onProcessSamples function. You may want to use a small interval if you want to process the recorded data in real time, for example. Note: this is only a hint, the actual period may vary. So don't rely on this parameter to implement precise timing. The default processing interval is 100 ms.

Namespace: SFML.Audio
Assembly: sfmlnet-audio-2 (in sfmlnet-audio-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
protected void SetProcessingInterval(
	Time interval
)
Protected Sub SetProcessingInterval ( 
	interval As Time
)
protected:
void SetProcessingInterval(
	Time interval
)
member SetProcessingInterval : 
        interval : Time -> unit 

Parameters

interval
Type: SFML.SystemTime

[Missing <param name="interval"/> documentation for "M:SFML.Audio.SoundRecorder.SetProcessingInterval(SFML.System.Time)"]

See Also