Module : Qout
Channel : qout/1
Caller channel: sig/1
QueueOutDriver::msgExecute()
{
..
Assign value1,value2,value3.etc.
..
}
QueueOutHandler::received(Message& msg)
{
..
..
Access value1,value2,value3 on every message(chan.connected/chan.notify or other message handler which is installed.
}
Module : Vmail
Channel : vmail/1
Caller channel: sig/1
VmailHandler::received(Message& msg)
{
..
Access value1,value2,value3 which I assigned from QueueOutHandler.
}
Like this I need to access variable. What would be right way if NamedList is not helpful. Or any other to use namedlist to get this done.