Documents
Writing Docs Gigedit SFZ Instrument Scripts NKSP Language NKSP Reference

abort()

You may call this function to stop execution of an arbitrary event handler instance. You need to pass the callback ID of the event handler instance to be stopped as argument to this function. For the same event type there may be more than one event handler instances running. Each one of them has its own unique callback ID. You can get the current event handler instance's callback ID by reading the built-in variable $NI_CALLBACK_ID.

Function Prototype

abort(callback-id)

Arguments

Argument Name Data Type Description
callback-id Callback ID Event handler instance to be stopped.
[required]

Return Value

None.

Examples

None yet.

See also

stop_wait(), exit(), fork(), callback_status()

Availability

Since LinuxSampler 2.0.0.svn61.

This function is only available with NKSP, it does not exist with KSP.

Document Updated:  2017-06-28  |  Author:  Christian Schoenebeck