mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
moduleapi: Add module:once() to execute a function after module load/startup
It is a common pattern for modules to do something like check for prosody.start_time, and execute code immediately if it is present, or wait for the server-started event if it isn't yet. For example, this allows you to run code after all other modules/hosts have been loaded, that are going to be loaded. Such code can now be replaced with a simple call to this method.
This commit is contained in:
parent
5ce1fe2603
commit
05c6704075
1 changed files with 5 additions and 0 deletions
|
@ -693,4 +693,9 @@ function api:may(action, context, peek)
|
|||
end
|
||||
end
|
||||
|
||||
-- Execute a function, once, but only after startup is complete
|
||||
function api:once(f)
|
||||
return prosody.started:next(f);
|
||||
end
|
||||
|
||||
return api;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue