blob: 90fb8eaf0b7d1a4d2c65e5e6148bceeb31314e7d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.artemis.ra;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Queue;
import javax.jms.QueueSender;
/**
* ActiveMQQueueSender.
*/
public class ActiveMQRAQueueSender extends ActiveMQRAMessageProducer implements QueueSender {
/**
* Whether trace is enabled
*/
private static boolean trace = ActiveMQRALogger.LOGGER.isTraceEnabled();
/**
* Create a new wrapper
*
* @param producer the producer
* @param session the session
*/
public ActiveMQRAQueueSender(final QueueSender producer, final ActiveMQRASession session) {
super(producer, session);
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("constructor(" + producer + ", " + session + ")");
}
}
/**
* Get queue
*
* @return The queue
* @throws JMSException Thrown if an error occurs
*/
@Override
public Queue getQueue() throws JMSException {
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("getQueue()");
}
return ((QueueSender) producer).getQueue();
}
/**
* Send message
*
* @param destination The destination
* @param message The message
* @param deliveryMode The delivery mode
* @param priority The priority
* @param timeToLive The time to live
* @throws JMSException Thrown if an error occurs
*/
@Override
public void send(final Queue destination,
final Message message,
final int deliveryMode,
final int priority,
final long timeToLive) throws JMSException {
session.lock();
try {
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("send " + this +
" destination=" +
destination +
" message=" +
message +
" deliveryMode=" +
deliveryMode +
" priority=" +
priority +
" ttl=" +
timeToLive);
}
checkState();
producer.send(destination, message, deliveryMode, priority, timeToLive);
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("sent " + this + " result=" + message);
}
}
finally {
session.unlock();
}
}
/**
* Send message
*
* @param destination The destination
* @param message The message
* @throws JMSException Thrown if an error occurs
*/
@Override
public void send(final Queue destination, final Message message) throws JMSException {
session.lock();
try {
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("send " + this + " destination=" + destination + " message=" + message);
}
checkState();
producer.send(destination, message);
if (ActiveMQRAQueueSender.trace) {
ActiveMQRALogger.LOGGER.trace("sent " + this + " result=" + message);
}
}
finally {
session.unlock();
}
}
}