MeowWolf / node-red-contrib-amqp

AMQP nodes for node-red
22 stars 18 forks source link

Custom Topology #52

Open awdm opened 2 years ago

awdm commented 2 years ago

In older AMQP-modules I was able to set a custom topology. I used this to introduce new exchange types. Like this:

{
  "exchanges":
  [
    {
      "name": "lvc",
      "type": "x-lvc",
      "options":
      {
        "exclusive": false,
        "auto_delete": true
      }
    }
  ] 
}

Unfortunately, all these modules are outdated, this here is the only one I could find that works on the current version of NodeJS. Could you maybe add this feature? Or just make it possible to declare a custom exchange type?