I am considering that can multiple consumer get the "same" message from a "same" queue which they subscribed ?
It's mean that consumer_1 and consumer_2 are both subscribe queue_1, when a single message is publish by publisher, can two of this consumer get that message at the same time ?
If yes, how can I implement it ?
It is not possible. A particular message from a queue cannot be consumed by more than one consumer.
Remember in AMQP, messages are always consumed from queue.
Very high level AMQP flow
You achieve different message exchange patterns in AMQP based on what exchange type and bindings you create step 2. Whether it is point to point, pub sub, multi cast, it will be based on what happens in step 2.
A nice article with nice diagrams