Displaying 2 results from an estimated 2 matches for "nextmessage".
2004 Jul 22
0
Re: FXRuby and Threads (was: radiobuttons are weird in 1.2.x series)
...# Queues up messages until they can be handled by client
message = @sock.readMsg
@queueMutex.synchronize {
@messageQueue.push message
}
end
end
During the FXRuby chore the queue is checked and a single message is processed, if available:
def nextMessage
# Pull off the first message (if there is one)
if @queueMutex.try_lock
message = @messageQueue.shift
@queueMutex.unlock
else
message = nil
end
return message
end
I checked it again, and with threadsDisabled the FXDataTargets/statusbar work perfectly and com...
2003 May 10
19
Voicemail2
Asterisk Users:
I've been working hard on app_voicemail2 which is an enhanced scalability
version of app_voicemail. Specifically, its features are:
* Highly improved internal architecture (maybe someone else can
actually code on it)
* Foot print for getting mailboxes from DB (for Vonage)
* Segmentable mailboxes, allowing you to truly multihost
voicemail for multiple companies