All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.mq.SendCallback Maven / Gradle / Ivy

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