javax.jms
Interface MessageListener


public interface MessageListener

A MessageListener is used to receive asynchronously delivered messages.

Each session must insure 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.


Method Summary
 void onMessage(Message message)
          Pass a message to the Listener.
 

Method Detail

onMessage

public void onMessage(Message message)
Pass a message to the Listener.
Parameters:
message - the message passed to the listener.