Created
August 21, 2021 23:00
-
-
Save georgeben/87cbd02f4b8285227d188884ee016084 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DELAY_EXCHANGE_NAME = "my_delay_exchange"; | |
const options = { | |
autoDelete: false, | |
durable: true, | |
passive: true, | |
arguments: { | |
"x-delayed-type": "direct", | |
}, | |
}; | |
channel.assertExchange(DELAY_EXCHANGE_NAME, "x-delayed-message", options) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment