public interface MessageListener
MessageListener
object is used to receive asynchronously
delivered messages.
Each session must ensure that it passes messages serially to the
listener. This means that a listener assigned to one or more consumers
of the same session can assume that the onMessage
method
is not called with the next message until the session has completed the
last call.
void onMessage(Message message)
message
- the message passed to the listenerCopyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.