BASS.NET API for the Un4seen BASS Audio Library

BaseDSPRaiseNotification Method

BASS.NET API for the Un4seen BASS Audio Library
Fires the Notification event.

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

public void RaiseNotification()
Remarks

Call this method to fire the Notification event.

This event might be used to notified the subscriber, that the DSP has processed some data and that for an example a UI needs to be updated in order to reflect this. However, if a DSP implementation does not have any UI relevant data to show, there will be no need to call this method in your DSP implementation and can simply be omitted.

Note: On Windows 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. On other platforms it might be invoked from within the DSP thread!

See Also

Reference