Messaging refers to the design pattern whereby discrete messages are used for communication between objects or processes. Messages can be simple data, complex data structures, or even code. This pattern is often used for asynchronous or parallel computing.
Questions tagged [messaging]
2583 questions
6
votes
3 answers
How to open attachment list of media?
In Android messaging, when click on attach it open the list of content provider like Camera, Gallery, Audio, Video etc. How to open the same list on button click?
Like this :

Sandy
- 6,285
- 15
- 65
- 93
6
votes
4 answers
Alternatives to RabbitMQ for .NET centric shop?
I need a reliable messaging solution. It looks like RabbitMQ would address the needs of my application. However, my environment is not well suited to deploying Erlang and Mnesia on a server. It is an enterprise environment and it is a huge battle…

RationalGeek
- 9,425
- 11
- 62
- 90
6
votes
2 answers
Socket emitting event multiple times
I am working on socket for chatting. Here is my socket code in nodejs file which is working well.
The outer socket io.emit working good and emits the message to all the users which are connected to that conversationId.
But the…

Profer
- 553
- 8
- 40
- 81
6
votes
5 answers
C++: How to build an events / messaging system without void pointers?
I'd like to have a dynamic messaging system in my C++ project, one where there is a fixed list of existing events, events can be triggered anywhere during runtime, and where you can subscribe callback functions to certain events.
There should be an…

Jarx
- 63
- 1
- 1
- 3
6
votes
1 answer
Messaging platform with QoS / Kafka partition overloading
I'm having a recurrent issue with Kafka: I partition messages by customer id, and sometimes it happens that a customer gets a huge amount of messages. As a result, the messages of this customer and all other customers in the same partition get…

Arnaud Le Blanc
- 98,321
- 23
- 206
- 194
6
votes
1 answer
Actor Model for instant messaging app?
i have a background in enterprise distributed systems using Messaging technologies such as RabbitMQ and others, though i am relatively new to Actor Model.
with that said, i am wondering if it is a good idea to use the Actor Model frameworks such as…

SHM
- 1,896
- 19
- 48
6
votes
0 answers
Receive text messages directly in the ios app
I need my iOS app to read the text messages sent from an external device and perform certain tasks based on the received message without any major user intervention. I am totally aware that the content of received text messages cannot be…

sreejesh
- 718
- 5
- 15
6
votes
2 answers
What are the pros and cons of using database for IPC to share data instead of message passing?
To be more specific for my application: the shared data are mostly persistent data such as monitoring status, configurations -- not more than few hundreds of items, and are updated and read frequently but no more than 1 or 2Hz. The processes are…

kennyc
- 153
- 1
- 6
6
votes
1 answer
kafka vs chronicle queue vs disruptor
Anyone can compare the underlying design and performance among kafka, chronicle queue and disruptor, in terms of logging? Seems kafka has most users but don't avoid GC.

ying
- 628
- 1
- 7
- 16
6
votes
1 answer
Are there reactive state libraries like Mobx for Python?
I'm looking for reactive state libraries like Mobx for Python, i.e. on server-side rather than client-side of a web application.
Mobx is similar to classic reactive libraries like RxPY, but has a different focus: It is not so much avout the…

vog
- 23,517
- 11
- 59
- 75
6
votes
1 answer
Apache Kafka: Can we restrict message to be read by only 1 consumer?
I am new to Kafka and the scenario that i am trying to achieve using Apache Kafka is:
I have a 3 producers who are sending instructions to a particular topic in Kafka. I have around 35 consumers who picks up one instruction at a time and performs…

tpuli
- 405
- 1
- 5
- 15
6
votes
1 answer
How to read RCS messages from android device programmatically
My application basically backup the SMS and MMS to cloud server. I used below URI to retrieve data from database.
SMS- Uri uri = Uri.parse("content://sms/");
MMS-Uri uri = Uri.parse("content://mms/");
Few days back while testing my app i…

Krish Allamraju
- 703
- 1
- 7
- 29
6
votes
1 answer
Qpid Java 6.0.1 vs Qpid JMS vs Qpid Proton
What is difference between Qpid Java 6.0.1 and Qpid JMS 0.9.0 and Qpid Proton?
I am new with JMS and wanted to implement simple JMS application with Apache Qpid.
Can anyone provide me links to understand it.

SandeepT
- 81
- 1
- 4
6
votes
2 answers
How to receive simplest Windows message on UWP XAML MVVM app?
My big-picture problem:
I need to send a signal from a Windows 10 desktop app (or a service, really) to a UWP XAML MVVM app on the same OS instance / machine.
I was using named semaphores in the global namespace, but these don't work at all on UWP…

Matt Griscom
- 101
- 2
- 5
6
votes
2 answers
Websocket timing: How to get the exact time when a websocket message arrives to the browser?
I'm writing a web application that use websockets for bidirectional communication between the client and the server. My main concern is user-perceived latency, so, I am measuring and profiling whatever I can. In particular, I'm capturing the current…

Adi Levin
- 5,165
- 1
- 17
- 26