Questions tagged [message-bus]

68 questions
4
votes
1 answer

Use RX on Microsoft.ServiceBus.Messaging.QueueClient (Reactive Extensions)

I have a pricing application. It sends pricing requests to an Azure Service Bus Queue (could be any queue) "PricingRequestQueue". There are a number of workers that pick these up, process them and return the results to a PricingResponse Queue. I…
thehumansaredead
  • 525
  • 1
  • 4
  • 7
4
votes
1 answer

Message bus: sender must wait for acknowledgements from multiple recipients

In our application the publisher creates a message and sends it to a topic. It then needs to wait, when all of the topic's subscribers ack the message. It does not appear, the message bus implementations can do this automatically. So we are leaning…
Mikhail T.
  • 3,043
  • 3
  • 29
  • 46
4
votes
4 answers

Passing messages from Node.js to external systems?

I'm completely new to Node.JS, if I want to pass messages to external systems using a message/event/servicebus.. what alternatives are there that integrates well with Node? The messages are just JSON strings, and external systems can be whatever,…
Roger Johansson
  • 22,764
  • 18
  • 97
  • 193
4
votes
1 answer

Is there a Ruby Message Bus gem?

I am currently building an architechture with a rails process and multiple worker processes which need to be informed of certain events (like the creation of an object). Rails | API Worker +----------o------o--------o------ - - - …
iblue
  • 29,609
  • 19
  • 89
  • 128
3
votes
1 answer

How to scale out a chat application with SignalR

How would you scale out a chat application (say something like WhatsApp or Telegram) which is using SignalR? Is it even possible or SignalR isn't a solution for this kind of applications?
amiry jd
  • 27,021
  • 30
  • 116
  • 215
3
votes
3 answers

STL Container for storing multiple types of values?

I have a Message structure that I am using with a message bus, and I'd like to send data with messages. The problem is that the data will vary in type; maybe for one message I'll just want to send one int, but for another I'll want to send several…
Accumulator
  • 873
  • 1
  • 13
  • 34
3
votes
1 answer

ObserveOnDispatcher dose not invoke the handler in UI thread

I have a message bus class which use Rx to push multiple threads events in WPF application. My problem ObserveOnDispatcher does not invoke the event handler in the UI thread. Code: private void button_Click(object sender, RoutedEventArgs e) { var…
Bassam Alugili
  • 16,345
  • 7
  • 52
  • 70
2
votes
1 answer

Redis messagebus vs. d-bus: what is happening at a low level? Basically the same thing?

I'm honestly surprised I haven't seen this discussed before. My impression is that Redis uses normal internet packet exchange to a server and gets the results back but that d-bus uses unix sockets (pipes) and superimposes a distribution system. I…
Guido
  • 21
  • 1
2
votes
0 answers

Basic message_bus gem setup on Rails 5.04

I'm attempting to setup MessageBus gem ( https://github.com/SamSaffron/message_bus ) on a fresh install of Rails 5.04 So far I've run bundle, added message-bus.js and included it in the application.js created an initializer ran a rails scaffold…
jmastuba
  • 21
  • 3
2
votes
2 answers

Liferay 7 message Bus

In Liferay 6.2 we used to configure Custom mail in messaging-spring.xml and do entery in service.properties.. To achieve the same in Liferay 7 OSGI module portlet, can anyone guide me how could I configure a message bus in it?
2
votes
2 answers

Using RxJS to implement MessageBus for communication between angularjs modules

Can I create a pub/sub message message queue with RxJS inside angulajs application. I have for example two modules: ModuleA ModuleB They exists as separate npm package but connected in ModuleC - it's the main shell. I don't want to create a…
hackp0int
  • 4,052
  • 8
  • 59
  • 95
2
votes
1 answer

How can I stop MassTransit creating exchange bindings for error messages

I'm trying to listen to the error queue to process failed messages but I can't seem to get MassTransit not to set bindings on message that i want it to listen to within the configuration. The configuration is below and is using v3 of…
Kevin Smith
  • 13,746
  • 4
  • 52
  • 77
2
votes
1 answer

Message Bus versus Quasar/HTTP for internal Microservice Calls

I am looking to optimize a microservice architecture that currently uses HTTP/REST for internal node-to-node communication. One option is implementing backpressure capability into the services, (eg) by integrating something like Quasar into the…
Robert Christian
  • 18,218
  • 20
  • 74
  • 89
2
votes
0 answers

WCF - How to automatically subscribe endpoint address behind load balancer?

I've created a mini message bus which runs operations on its clients (e.g. clear their cache). I'm trying to make it dynamic so every new application added will automatically subscribe its endpoint to the bus so the bus could communicate with it…
BornToCode
  • 9,495
  • 9
  • 66
  • 83
2
votes
1 answer

DDD Bounded Context Communication Message Bus

I am integrating different bounded contexts with Windows Service Bus and have some questions: 1) How to detected duplicates in other bounded contexts? Store the last processed message sequence? I want the ability to re-fire events to allow re-sync…
morleyc
  • 2,169
  • 10
  • 48
  • 108