Oracle® Streams Advanced Queuing Java API Reference
Release 1 (10.1)

B12023-01

javax.jms
Interface 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.


Method Summary
 void onMessage(javax.jms.Message message)
          Passes a message to the listener.

 

Method Detail

onMessage

public void onMessage(javax.jms.Message message)
Passes a message to the listener.
Parameters:
message - the message passed to the listener

Oracle® Streams Advanced Queuing Java API Reference
Release 1 (10.1)

B12023-01

Copyright © 2001 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.