BASS.NET API for the Un4seen BASS Audio Library

BaseDSPNotification Event

BASS.NET API for the Un4seen BASS Audio Library
Event handler used to notify that the DSP has processed some data.

Namespace:  Un4seen.Bass.Misc
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public event EventHandler Notification

Value

Type: SystemEventHandler
Remarks

This event might be used to get notified, that the DSP has processed some data and that for example a UI needs to be updated in order to reflect this.

Note: This implementation ensures, that the event will be executed in the main thread the subscriber executes in! So when subscribing to this event from UI thread, the specified event delegate will also be called in that UI thread.

In a DSP implementation you need to call RaiseNotification in order to fire this event.

See Also

Reference