📄 jmsmessageproducer.java
字号:
/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1. Redistributions of source code must retain copyright
* statements and notices. Redistributions must also contain a
* copy of this document.
*
* 2. Redistributions in binary form must reproduce the
* above copyright notice, this list of conditions and the
* following disclaimer in the documentation and/or other
* materials provided with the distribution.
*
* 3. The name "Exolab" must not be used to endorse or promote
* products derived from this Software without prior written
* permission of Exoffice Technologies. For written permission,
* please contact info@exolab.org.
*
* 4. Products derived from this Software may not be called "Exolab"
* nor may "Exolab" appear in their names without prior written
* permission of Exoffice Technologies. Exolab is a registered
* trademark of Exoffice Technologies.
*
* 5. Due credit should be given to the Exolab Project
* (http://www.exolab.org/).
*
* THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* EXOFFICE TECHNOLOGIES OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Copyright 2000-2004 (C) Exoffice Technologies Inc. All Rights Reserved.
*
* $Id: JmsMessageProducer.java,v 1.19.2.1 2004/05/01 04:56:45 tanderson Exp $
*/
package org.exolab.jms.client;
import java.util.Date;
import javax.jms.DeliveryMode;
import javax.jms.Destination;
import javax.jms.InvalidDestinationException;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageFormatException;
import javax.jms.MessageProducer;
import org.exolab.jms.message.MessageId;
/**
* Client implementation of the <code>javax.jms.MessageProducer</code>
* interface
*
* @version $Revision: 1.19.2.1 $ $Date: 2004/05/01 04:56:45 $
* @author <a href="mailto:jima@exoffice.com">Jim Alateras</a>
*/
abstract class JmsMessageProducer
implements MessageProducer {
/**
* The default priority for messages.
*/
private int _defaultPriority = Message.DEFAULT_PRIORITY;
/**
* The default time to live for messages.
*/
private long _defaultTtl = 0;
/**
* The default delivery mode for messages.
*/
private int _deliveryMode = DeliveryMode.PERSISTENT;
/**
* This flag is used to indicate whether timestamps are enabled or
* disabled.
*/
private boolean _disableTimestamp = false;
/**
* This flag is used to indicate whether message ids are enabled or
* disabled
*/
private boolean _disableMessageId = false;
/**
* The session that created this producer
*/
private JmsSession _session = null;
/**
* Construct a new <code>JmsMessageProducer</code>
*
* @param session session responsible for this producer
*/
public JmsMessageProducer(JmsSession session) {
if (session == null) {
throw new IllegalArgumentException("Argument 'session' is null");
}
_session = session;
}
/**
* Set whether message IDs are disabled.
*
* @param value indicates if message IDs are disabled
*/
public void setDisableMessageID(boolean value) {
_disableMessageId = value;
}
/**
* Returns if message IDs are disabled
*
* @return <code>true</code> if message IDs are disabled
*/
public boolean getDisableMessageID() {
return _disableMessageId;
}
/**
* Set whether message timestamps are disabled
*
* @param value indicates if message timestamps are disabled
*/
public void setDisableMessageTimestamp(boolean value) {
_disableTimestamp = value;
}
/**
* Returns if message timestamps are disabled
*
* @return <code>true</code> if message timestamps are disabled
*/
public boolean getDisableMessageTimestamp() {
return _disableTimestamp;
}
/**
* Set the producer's default delivery mode
*
* @param deliveryMode the delivery mode. Legal values are
* <code>DeliveryMode.NON_PERSISTENT</code> or
* <code>DeliveryMode.PERSISTENT</code>
*/
public void setDeliveryMode(int deliveryMode) {
_deliveryMode = deliveryMode;
}
/**
* Returns the producer's default delivery mode
*
* @return the default delivery mode
*/
public int getDeliveryMode() {
return _deliveryMode;
}
/**
* Set the producer's default priority
*
* @param priority the priority. Must be a value between 0 and 9
*/
public void setPriority(int priority) {
_defaultPriority = priority;
}
/**
* Returns the producer's default delivery mode
*
* @return the default delivery mode
*/
public int getPriority() {
return _defaultPriority;
}
/**
* Set the default time to live for messages
*
* @param timeToLive the message time to live in milliseconds; zero is
* unlimited
*/
public void setTimeToLive(long timeToLive) {
_defaultTtl = timeToLive;
}
/**
* Returns the default time to live for messages
*
* @return the default message time to live in milliseconds; zero is
* unlimited
*/
public long getTimeToLive() {
return _defaultTtl;
}
/**
* Close the producer
*
* @throws JMSException if the producer can't be closed
*/
public synchronized void close() throws JMSException {
_session = null;
}
/**
* Release all resources used by this consumer
*/
public synchronized void destroy() {
_session = null;
}
/**
* Determines if the producer is closed
*
* @return <code>true</code> if the producer is closed
*/
public synchronized boolean isClosed() {
return (_session == null);
}
/**
* Returns the session that created this producer
*
* @return the session that created this producer
*/
protected JmsSession getSession() {
return _session;
}
/**
* Send a message.
*
* @param destination the destination to send to
* @param message the message to send
* @param deliveryMode the delivery mode to use
* @param priority the priority for the message
* @param timeToLive the message's lifetime, in milliseconds
* @throws JMSException if the message cannot be sent
*/
protected void sendMessage(Destination destination, Message message,
int deliveryMode, int priority, long timeToLive)
throws JMSException {
if (!(destination instanceof JmsDestination)) {
// don't support non-OpenJMS or null destinations
throw new InvalidDestinationException(
"Invalid destination: " + destination);
}
if (message == null) {
throw new MessageFormatException("Null message");
}
message.setJMSMessageID(MessageId.create());
message.setJMSDestination(destination);
message.setJMSTimestamp((new Date()).getTime());
message.setJMSPriority(priority);
if (timeToLive > 0) {
message.setJMSExpiration(System.currentTimeMillis() + timeToLive);
} else {
message.setJMSExpiration(0);
}
// if the destination is a temporary one, override the delivery
// mode to NON_PERSISTENT
if (destination instanceof JmsTemporaryDestination) {
message.setJMSDeliveryMode(DeliveryMode.NON_PERSISTENT);
} else {
message.setJMSDeliveryMode(deliveryMode);
}
_session.sendMessage(message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -