"Message queue" is a design pattern or software engineering component that defines discipline or API for communication between two or more interrelated processes or systems. The message queue enforces asynchronous processing and loose coupling. Depending on the implementation they may also provide ...

learn more… | top users | synonyms (1)

0
votes
0answers
6 views

Optimizing network bandwidth over federated database aggregation jobs

I have a federated database structured as follows: The databases are spread across three geographic locations Multiple databases are clustered at each geographic location Hibernate is running on top ...
0
votes
0answers
19 views

Incorrect Message Hooking

After asking about hooking a game's message queue on here, I was told to use GetWindowThreadProcessId(). Here is the code I've written and am injecting, it doesn't seem to work at all. LRESULT ...
0
votes
2answers
22 views

Hooking Message Proc

I would like to hook a game's message proc, however if I use SetWindowsHookEx then I need to know the thread id. Is there anyway to find out which thread handles the message queue?
1
vote
2answers
27 views

Need to increase buffer for IPC message queue in OpenWRT

I'm just learning how to use message queues, and I am having a little difficulty with them. I am using two completely separate applications to do the testing -- one is the "sender", and the other is ...
0
votes
0answers
15 views

Execute asynchronous task triggered by web request in ASP.NET MVC on Azure

Given a REST API implemented in ASP.NET MVC 4 that: Triggers communication with an external API on some requests Performs this communication asynchronously to ensure responsive endpoints Retries the ...
2
votes
1answer
33 views

Need a thread-safe asynchronous message queue

I'm looking for a Python class (preferably part of the standard language, rather than a 3rd party library) to manage asynchronous 'broadcast style' messaging. I will have one thread which puts ...
5
votes
2answers
80 views

How do I create a memory bound message queue in Erlang?

I want the speed of asynchronous messages but still have some flow control. How can I accomplish this in Erlang?
0
votes
0answers
9 views

file based queuing service in java for ipc

I want a file based queuing service which can store text data, as example I have two separate process 'A' and 'B'. 'A' reading data from serial port and 'B' is sending data over internet to a host. ...
0
votes
0answers
13 views

How can I configure trigerring in IBM WebSPhere MQ Explorer?

I would like to write a .net Trigger Monitor. But at first I would like just to configure a triggered queue. In accordance with this url ...
0
votes
0answers
17 views

ActiveMQ and PHP on web browser

I have been trying to use Active MQ with PHP, while I have been able to run a producer and consumer via a command line PHP script. I wanted to run it in a browser. I'm using the following code : ...
1
vote
0answers
26 views

Externalizing resource adapter configs from standalone.xml in Jboss-as 7.1.1

I'm using Jboss-as 7.1.1 I have configured the resource adapter as below in the standalone.xml file. This basically is the configuration for a outbound queue using Websphere MQ and it works fine. ...
0
votes
0answers
22 views

IPC socket/queue performance improves if client and server are running on the same processor [closed]

I have been messing around with sockets and message queues as IPC mechanisms on Linux and have some results I cannot explain. I'm running a SMP Linux kernel with 4 cores. (Linux build-15 ...
0
votes
2answers
43 views

c# windows azure - queuing an entity, model or POCO

I have this in my program, string message = string.Empty; queue.AddMessage(new CloudQueueMessage(message)); I can queue strings, its working but what if I have my own model, how ...
2
votes
0answers
30 views

Using beanstalkd vs ActiveMQ for queuing on PHP Ubuntu [closed]

I have a PHP system where users interact with others; when user do some action, then this action will forward to all users following this user as member feed. I currently use beanstalkd queue system, ...
0
votes
1answer
39 views

Design decision for text message queueing implementation

I have a scenario where using certain text message gateway I receive incoming messages via GET within the servlet, compose the reply message, store it in database with id key and then just send it out ...

1 2 3 4 5 73
15 30 50 per page