c# - NetMQ DealerSocket, Group of publishers for one subscriber -


i need xpub/xsub pattern act image https://ibb.co/m9hqoa.

i using dealersocket instead of xpublishersocket , it's acting loadbalancer , that's great.

  using (var xsubscribersocket = new xsubscribersocket($"@tcp://{options.tosubscriberaddress()}"))   using (var dealersocket = new dealersocket($"@tcp://{options.topublisheraddress()}"))   {                           proxy = new proxy(xsubscribersocket, dealersocket);       proxy.start();   } 

but want of packets each publisher goes 1 subscriber described in image.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -