Install handler for using Yate's messages in Javascript

From Yate Documentation
Revision as of 17:42, 12 April 2013 by Dana (Talk | contribs)

Jump to: navigation, search

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