
org.frameworkset.mq.SendCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-plugin-activemq Show documentation
Show all versions of bboss-plugin-activemq Show documentation
hibernate plugin,word/pdf plugin
The newest version!
package org.frameworkset.mq;
import javax.jms.JMSException;
/**
* Created by 1 on 2017/5/26.
*/
public interface SendCallback {
// public abstract void sendMessage(MessageSession session,MessageProducer producer) throws JMSException;
public abstract void sendMessage(MessageSession session) throws JMSException;
public boolean autocommit();
/**
* Session.AUTO_ACKNOWLEDGE
* int AUTO_ACKNOWLEDGE = 1;
int CLIENT_ACKNOWLEDGE = 2;
int DUPS_OK_ACKNOWLEDGE = 3;
*/
public int ackMode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy