Skip to main content

Questions tagged [message-passing]

Filter by
Sorted by
Tagged with
1 vote
0 answers
221 views

I'm designing a medium size project that will have few decoupled microservices. I want to avoid costly architecture mistakes at the very beginning. What I'm wondering (I googled and didn't found any ...
Maciej Pszczolinski's user avatar
-2 votes
2 answers
130 views

I have X number of servers in NLB listening to an event that gets published by a backend system. I am planning to develop a windows service that listens to the event and then calls an internal API. ...
user9969157's user avatar
2 votes
1 answer
214 views

My team is currently developing an application using a microservice architecture with publish/subscribe interservice communication over a message bus. Certain types of HTTP requests and messages ...
Ashok Bhaskar's user avatar
1 vote
0 answers
65 views

When using derived types in MPI for communication of data which is not contiguous in memory, the sequence of datatype-displacement pairs defining the derived type seems to be assumed to be the same ...
K. Mylonakis's user avatar
2 votes
3 answers
585 views

A service A needs to access services B, C and D to process a request. Currently this is implemented as parallel async calls from A to B, C and D. Once all of them has responded, service A follows some ...
Raiyan's user avatar
  • 131
3 votes
1 answer
197 views

I am implementing a messaging protocol between nodes on a network and i am wondering how to expose the messaging system interface to the programmers. The messaging protocol supports a set of commands ...
Karim Manaouil's user avatar
4 votes
1 answer
1k views

Basically this question is of the variety "Can I check that we're not about to do something dumb?" We're setting up a new system that needs to guarantee delivery of emails. We have an ...
ChrisJ's user avatar
  • 289
3 votes
1 answer
238 views

We need to organize a way to exchange messages between servers in multiple data centers. Messages are not critical. We just need to be able to send messages from any servers in any data centers to any ...
Oleksandr's user avatar
  • 141
1 vote
1 answer
681 views

The general question is what kind of mechanism can I use to transfer data to and from publishers and subscribers where publishers or subscribers can be permanently offline? Can message queues be used ...
Kent Bull's user avatar
  • 141
5 votes
2 answers
1k views

Somewhere I have read that "Object Oriented" is a misnomer and that OO should really stand for "message-oriented programming". What I am not clear about is ... what does it mean? For example in ...
Dennis's user avatar
  • 8,307
8 votes
1 answer
428 views

In bare metal or minimal RTOS type embedded systems with multiple processors is it possible to have an identical program running on each processor that uses Message Passing Interface (MPI) to provide ...
8bit.wappen's user avatar
2 votes
2 answers
581 views

How, if at all, is Message Passing Interface (MPI) related to the general concept of "message passing"? Admittedly, the question does sound ridiculous. Surely, "Message Passing Interface" is an ...
Praxeolitic's user avatar
  • 1,684
0 votes
2 answers
1k views

Lets say I have multiple websocket servers that maintain many connections to clients to send updates. These websocket servers will be pulling said updates from a rabbitmq broker, and broadcasting them ...
Jaigus's user avatar
  • 103
1 vote
1 answer
201 views

I am having a problem developing an object-orientated architecture to manage a network of sensors and controls. Currently, I am writing in Python, but this is more of a conceptual question. I have an ...
Michael Molter's user avatar
3 votes
1 answer
292 views

I'm designing and application that spawns another processes to handle some specialized work. The application and the process it spawns will communicate through standard input and standard output (and ...
Rico Kahler's user avatar
1 vote
1 answer
61 views

I recently wrote a protocol I call RPEP (https://github.com/Tixit/RPEP), partially in response to the unfortunately named WAMP protocol. I'm looking for feedback as to whether the protocol is ...
B T's user avatar
  • 350
6 votes
1 answer
5k views

We have a distributed solution that's currently under design. There are a few points of integration where some application needs data from someone else and vice versa. We could solve by either ...
dot's user avatar
  • 581
16 votes
1 answer
8k views

Alan Kay said "OO" was about messaging, not objects and drew a parallel to biological cells. His views are enticing, but vague. The way I understand it is something like a Cellular Automata. In a ...
R. Barzell's user avatar
1 vote
1 answer
320 views

Look at the following use case. I have a client (Java) application, which wants to get/set the state of another, remote application (C). The communication between them is done via SIP, which is run ...
jcklie's user avatar
  • 111
3 votes
1 answer
280 views

I'm playing with a mental model for distributed actor system that communicates using messages. In this, it is possible for an actor to create another actor. I've encountered one specific situation ...
PatrickB's user avatar
  • 133
0 votes
2 answers
272 views

An app I'm working on is designed with MVC. The components often interacts with each other by passing int constants, which then have to be interpreted with if statements. I'm wondering if this is ...
Aviv Cohn's user avatar
  • 21.6k
6 votes
4 answers
3k views

This problem feels rather basic, yet I've never known a great solution. I'm looking for a way for components in an application to notify each other while being as decoupled as possible (both at build/...
Jason Boyd's user avatar
0 votes
1 answer
428 views

In objective C, classes are objects, but what object owns the class objects? I am trying to get as detailed an understanding of iOS programming as I can, and this question popped into my head, so I ...
user3251270's user avatar
2 votes
1 answer
467 views

Wonder if anyone could shed some light on this messaging construct: The documentation says that messages appear btwn brackets [] and that the msg target/object is on the left, whilst the msg itself (...
user10756's user avatar
1 vote
1 answer
4k views

When using a non-MVC service-oriented/Interactor pattern approach to decoupled system architecture, how is session state implemented? I've been thinking of building the frontend of an application ...
Seralize's user avatar
  • 474
3 votes
1 answer
479 views

I recently (about two months ago) read an article that explained some user interface paradigm that I can't remember the name of and I also can't find the article anymore. The paradigm allows for ...
Ronald Wildenberg's user avatar
0 votes
4 answers
1k views

I am learning objective-C after having good knowledge of C/C++. I have 2 questions: Are Obj-C message passing and C++ vtable, two different ways of implementing polymorphism or Are they two very ...
codecool's user avatar
  • 555
29 votes
6 answers
21k views

My question is coming from an somewhat uneducated perspective. What are the relative merits of a "message passing" system vs an "event based" system. Why would one choose one over the other? What ...
sylvanaar's user avatar
  • 2,305
17 votes
3 answers
10k views

I am studying the Entity-Component-System architecture philosophy. As I have read about it, a typical entity system has: 1) Entities - which are merely ID tags which have a number of components 2) ...
noncom's user avatar
  • 303