FileDocCategorySizeDatePackage
MessageListener.javaAPI DocGlassfish v2 API2688Fri May 04 22:36:16 BST 2007javax.jms

MessageListener

public interface MessageListener
A MessageListener object 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.

version
1.0 - 13 March 1998
author
Mark Hapner
author
Rich Burridge

Fields Summary
Constructors Summary
Methods Summary
public voidonMessage(Message message)
Passes a message to the listener.

param
message the message passed to the listener