ntex-rs / ntex-amqp

AMQP 1.0 Server framework
Apache License 2.0
66 stars 15 forks source link

A more complete example #15

Open sleipnir opened 2 years ago

sleipnir commented 2 years ago

Hi everyone, I loved this project and thanks for taking the time to do it. But I understood very little about the character of the project itself. I didn't understand the Server example and what the Server is intended for in this project. Would it be possible to specify queues and topics and receive messages through these? If so, would you have a more complete example?

Thanks

sleipnir commented 2 years ago

Someone here?

fafhrd91 commented 2 years ago

i will try to update example.

sleipnir commented 2 years ago

Thanks @fafhrd91 I have a queuing system based on AMQP today and what I wanted was to remove the need for a broker like RabbitMQ or ActiveMQ for simpler services and I would like to know if ntex-amqp could help me with that.

fafhrd91 commented 2 years ago

we use ntex-amqp for azure eventhub and servicebus connectivity. also we expose azure iot hub amqp api via ntex-amqp

sleipnir commented 2 years ago

we use ntex-amqp for azure eventhub and servicebus connectivity. also we expose azure iot hub amqp api via ntex-amqp

Let me get this straight, so you guys use ntex-amqp as a proxy? Just forwarding messages to Azure Broker? An example with these characteristics would be interesting.

fafhrd91 commented 2 years ago

as gateway, it does a lot of work beyond proxying

sleipnir commented 2 years ago

Cool

sleipnir commented 2 years ago

as gateway, it does a lot of work beyond proxying

But do you have a reduced example of this same scenario?