get_current_notified_process()
- Get current notified running process on current plugin gateway (if any). Refer to notify_process_started
Edit
- params: none
- return: process (string) or nil
Edit
Refer to notify_process_started for list of possible processes
Edit
require "core"
local current_process = core.get_current_notified_process()
if current_process ~= nil then
core.notify_process_stopped(current_process)
end