SAFMQ 0.7.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SAFMQ 0.7.1 (Default branch)
# 1  
Old 11-25-2008
SAFMQ 0.7.1 (Default branch)

The SAFMQ (Store and Forward Message Queue)message queue server provides asynchronous,round-trip, assured delivery messaging. Messagepublishers send or enqueue a message with theSAFMQ server. The SAFMQ server stores that messageuntil the point at which the message can beforwarded on to the client. Message publishers areassured that the messages are delivered. SAFMQ hasbeen tested in both Win32 and Linux Java environments.License: The Apache License 2.0Changes:
This release fixes an issue with VS2005 C++ and 64-bit time_t values. It builds VS2005 solutions and projects. It adds .lib files for VS2005.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MSG_GET_QUEUE(3)							 1							  MSG_GET_QUEUE(3)

msg_get_queue - Create or attach to a message queue

SYNOPSIS
resource msg_get_queue (int $key, [int $perms = 0666]) DESCRIPTION
msg_get_queue(3) returns an id that can be used to access the System V message queue with the given $key. The first call creates the mes- sage queue with the optional $perms. A second call to msg_get_queue(3) for the same $key will return a different message queue identifier, but both identifiers access the same underlying message queue. PARAMETERS
o $key - Message queue numeric ID o $perms - Queue permissions. Default to 0666. If the message queue already exists, the $perms will be ignored. RETURN VALUES
Returns a resource handle that can be used to access the System V message queue. SEE ALSO
msg_remove_queue(3), msg_receive(3), msg_send(3), msg_stat_queue(3), msg_set_queue(3). PHP Documentation Group MSG_GET_QUEUE(3)