Install handler for using Yate's messages in Javascript

From Yate Documentation
(Difference between revisions)
Jump to: navigation, search
Line 9: Line 9:
 
Parameters:
 
Parameters:
  
* callback - is the callback function that has to be written before the handler installed
+
* callback - callback function that has to be written before the handler installed
 
* message - string with the name of the message
 
* message - string with the name of the message
 
* priority - integer with the priority of the message
 
* priority - integer with the priority of the message
* filter
+
* filter  
  
  

Revision as of 17:42, 12 April 2013

To have access to specific messages from Javascript you have to install a handler.

How to install a handler

For example if you need to install a handler for a message this is the structure:

Message.install(callback, message, priority, filter);

Parameters:

  • callback - callback function that has to be written before the handler installed
  • message - string with the name of the message
  • priority - integer with the priority of the message
  • filter


Example

Install handler for user.auth message and create the callback method:

function usrAuth(msg)
{
    Engine.Debug(msg);
    //your code
    
}

Message.install(usrAuth,"user.auth",80);


See also

Personal tools
Namespaces

Variants
Actions
Preface
Configuration
Administrators
Developers