Calling new Queue() twice with the same queue name #1172
Unanswered
CharlesAntoineCaron
asked this question in
Q&A
Replies: 1 comment
-
Two instances of the same queue... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the following code:
const myQueue1 = new Queue<ISomeInterface>("MY QUEUE", {...});
const myQueue2 = new Queue<ISomeInterface>("MY QUEUE", {...});
Are myQueue1 and myQueue2 the same queue? Or does it create 2 different queues?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions