>From the manual it states that you could read from multiple receivers and you could do that: by adding a receiver to a session as such:
Receiver receiver1 = session.createReceiver(address1); Then you could simply read it: Message message = session.nextReceiver().fetch(); Now my question is how do I remove a receiver once I do not want to receive from it ?
