站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档

MessageListener (JBoss J2EE API) - JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档


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(Message message)
          Passes a message to the listener.
 

Method Detail

onMessage

public void onMessage(Message message)
Passes a message to the listener.

Parameters:
message - the message passed to the listener


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.