1 45 package org.exolab.jms.messagemgr; 46 47 import java.sql.Connection ; 48 49 import javax.jms.JMSException ; 50 51 import org.exolab.jms.client.JmsDestination; 52 import org.exolab.jms.message.MessageImpl; 53 import org.exolab.jms.persistence.PersistenceException; 54 55 56 67 public interface MessageManagerEventListener { 68 69 76 void messageAdded(JmsDestination destination, MessageImpl message) 77 throws JMSException ; 78 79 88 void persistentMessageAdded(Connection connection, 89 JmsDestination destination, 90 MessageImpl message) 91 throws JMSException , PersistenceException; 92 93 } 94 | Popular Tags |