Messages in JS
From Yate Documentation
(Difference between revisions)
(Created page with "YATE's Messages in JavaScript MessageQueue") |
|||
| (22 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | From Javascript module (the same goes for external scripts) you can have access to all Yate's messages. | |
| − | [[MessageQueue]] | + | In order to receive a message you must install a handler. |
| + | |||
| + | You can also create, a custom MessageQueue, to avoid usage of internal Yate's message queue, if you need to handle a specific message, that takes too long to be processed by Yate. | ||
| + | |||
| + | |||
| + | {|class="yate-table" | ||
| + | |class="yate-header-right"|YATE's Messages in JavaScript | ||
| + | |- | ||
| + | |class="yate-content-right"| | ||
| + | * [[Install handler for using Yate's messages in Javascript]] | ||
| + | How to install handler fot messages from Javascript. | ||
| + | * [[MessageQueue]] | ||
| + | The MessageQueue is a mechanism for organizing Yate's messages in different queues. | ||
| + | |} | ||
| + | |||
| + | |||
| + | '''See also''' | ||
| + | |||
| + | * [[Messages]] | ||
| + | * [[Javascript]] | ||
| + | |||
| + | [[Category:Javascript]] [[Category:Programmers]] | ||
Revision as of 13:54, 1 November 2013
From Javascript module (the same goes for external scripts) you can have access to all Yate's messages.
In order to receive a message you must install a handler.
You can also create, a custom MessageQueue, to avoid usage of internal Yate's message queue, if you need to handle a specific message, that takes too long to be processed by Yate.
| YATE's Messages in JavaScript |
|
How to install handler fot messages from Javascript. The MessageQueue is a mechanism for organizing Yate's messages in different queues. |
See also