Singleton (separate) message handler context in Javascript
From Yate Documentation
(Difference between revisions)
(Created page with " Singleton message handlers should be used when application is expected to process a high number of messages and want to process it in a 'multithreaded' way. A regular messa...") |
Revision as of 16:21, 29 August 2024
Singleton message handlers should be used when application is expected to process a high number of messages and want to process it in a 'multithreaded' way.
A regular message handler callback is called by javascript when script context is unlocked.
Script context is locked during message processing.
See also