Questions tagged [message-bus]

68 questions
0
votes
1 answer

How to retrieve Dead Letter Queue count?

Question How do i get the dead letter queue length without receiving each message and counting how many message I received? My Current Implementation public int GetDeadLetterQueueCount() { …
Dan Cundy
  • 2,649
  • 2
  • 38
  • 65
0
votes
1 answer

MessageBus.callbackInterval does not work in production

I've been using the message_bus gem for a few months as a more simplified alternative to a websocket solution. The default MessageBus.callbackIntervalis too wide, so I want to narrow it. I've done this successfully in my development env. However,…
Cjoerg
  • 1,271
  • 3
  • 21
  • 63
0
votes
1 answer

ActiveMQ message bus logging handler python

I want to publish message to ActiveMQ when I do LOG.debug or LOG.info, I have to add handler to logging. If is there any other pythonic way to do this?
Nilesh
  • 20,521
  • 16
  • 92
  • 148
0
votes
1 answer

Using message bus as replacement for regular message passing between actors (e.g., in scala)

I have a Java web-service that I am going to reimplement from scratch in Scala. I have an actor-based design for the new code, with around 10-20 actors. One of the use-cases has a flow like this: Actor A gets a message a, creates tens of b messages…
Mahdi
  • 1,778
  • 1
  • 21
  • 35
0
votes
2 answers

Lightweight Message Bus with broadcasting and routing capabilities?

I am trying to find the most light-weight message bus (queue?) that can handle the following: Producer A subscribes to the bus. The bus is specified via a well known form of identification (like a name, a socket or something). Consumer B…
0
votes
1 answer

In Android it is better to use bounded service for communicating with a fragment or a service with a eventbus system (MessageBus) is enough?

Im building an Android App in Xamarin that plays music. I have a service that plays the music and a fragment that display the playlist, some times i want a small feedback from the service and so far i was using MessageBus for the communication. For…
CDrosos
  • 2,418
  • 4
  • 26
  • 49
0
votes
1 answer

Can Message Broker 7.0 running on z/OS extract/update SQL Server data?

Need your inputs around how to extract and update data from SQL Server 2012 database from Message Broker V7.0 running on Z/OS. We initially thought of using Database Input Node of MB. But as MB 7 on z/OS doesn't seem to support SQL Server as per IBM…
0
votes
2 answers

Do I need a service bus for simple asynchronous command handling?

My system uses The Command Pattern with separate handlers. My commands are executed on a CommandService which currently handles all commands in-process. I have certain commands which do at least 1 of these things that are slow operations: Sends an…
Josh Kodroff
  • 27,301
  • 27
  • 95
  • 148
1 2 3 4
5