0

Whats the best way to implement loosely coupled micro services in Service Fabric using asynchronous messaging. I want service A to publish a message and Service B to receive it. Can I use rabbitmq or azure message bus in such cases. If so how do I enable communication with those endpoints in a scaling architecture?

LoekD
  • 11,402
  • 17
  • 27
Patola
  • 515
  • 8
  • 30

1 Answers1

1

I'd recommend having a look at this code and/or library.

It allows pub/sub messaging between services and actors, without the need for external dependencies.

LoekD
  • 11,402
  • 17
  • 27