Displaying 1 result from an estimated 1 matches for "nextmeetme".
2007 Jul 28
3
global variables and updates
...rly 18 hours ago
and never saw it ..
I have a need to have a unique integer number that can be used by a
dynamic meetme room (I am wanting to redirect a call into a meeting
room, and need a unique number to make sure I don't put two people
together !)
I was going to use a global variable ${NEXTMEETME}, and add one every
time I redirect.
Is the changing of a global variable atomic ? That is, if I have two or
more channels being redirected at the same time, and they all execute
exten => _X.,n,Set(NEXTMEETME=${MATH(${NEXTMEETME}+1,i)})
exten => _X.,n,Set(MYMEETME=${NEXTMEETME})
if NEXTM...