Description
Is there an existing proposal for this?
- I have searched the existing proposals
Is your feature request related to a problem?
The ability to send JSON via HTTP posts to a wehbook endpoint which then takes that JSON and adds it to the message queue.
Describe the solution you'd like
I know MQ's + HTTP is kind of an antipatern and usually the advice is to write your own middleware. So far I have not seen a message queue that offers this feature, but it seems like a common enough problem that people should not have to write their own customer middleware every time.
An example of this is can be found trying to search for ways to integrate HTTP messages with RabbitMQ and finding this project https://github.com/dougwatson/http2amqp
The ideal scenario would be if you could create a webhook endpoint on BlazingMQ which would then be able to receive JSON messages from HTTP (push/pub) sources which would convert the JSON into a message and place it into a queue.
Alternatives you considered
Custom middleware