Package org.objectweb.joram.client.jms

Source Code of org.objectweb.joram.client.jms.TopicPublisher

/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2001 - ScalAgent Distributed Technologies
* Copyright (C) 1996 - Dyade
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
* USA.
*
* Initial developer(s): Frederic Maistre (INRIA)
* Contributor(s):
*/
package org.objectweb.joram.client.jms;

import javax.jms.IllegalStateException;
import javax.jms.JMSException;

/**
* Implements the <code>javax.jms.TopicPublisher</code> interface.
*/
public class TopicPublisher extends MessageProducer implements javax.jms.TopicPublisher {
  /**
   * Constructs a publisher.
   *
   * @param sess  The session the publisher belongs to.
   * @param topic The topic the publisher publishs messages on.
   *
   * @exception IllegalStateException  If the connection is broken.
   * @exception JMSException  If the creation fails for any other reason.
   */
  TopicPublisher(TopicSession sess, Destination topic) throws JMSException {
    super(sess, topic);
  }

  /** Returns a string view of this receiver. */
  public String toString() {
    return "TopicPub:" + sess.getId();
  }

  /**
   * API method.
   *
   * @exception IllegalStateException  If the publisher is closed.
   */
  public javax.jms.Topic getTopic() throws JMSException {
    if (closed)
      throw new IllegalStateException("Forbidden call on a closed publisher.");

    return (javax.jms.Topic) super.dest;
  }

  /**
   * API method.
   *
   * @exception IllegalStateException  If the publisher is closed, or if the
   *              connection is broken.
   * @exception JMSException  If the request fails for any other reason.
   */
  public void publish(javax.jms.Message message,
                      int deliveryMode,
                      int priority,
                      long timeToLive) throws JMSException {
    super.send(message, deliveryMode, priority, timeToLive);
  }
   
  /**
   * API method.
   *
   * @exception IllegalStateException  If the publisher is closed, or if the
   *              connection is broken.
   * @exception JMSException  If the request fails for any other reason.
   */
  public void publish(javax.jms.Message message) throws JMSException {
    super.send(message);
  }

  /**
   * API method.
   *
   * @exception IllegalStateException  If the publisher is closed, or if the
   *              connection is broken.
   * @exception JMSException  If the request fails for any other reason.
   */
  public void publish(javax.jms.Topic topic, javax.jms.Message message) throws JMSException {
    super.send(topic, message);
  }

  /**
   * API method.
   *
   * @exception IllegalStateException  If the publisher is closed, or if the
   *              connection is broken.
   * @exception JMSException  If the request fails for any other reason.
   */
  public void publish(javax.jms.Topic topic, javax.jms.Message message,
                      int deliveryMode, int priority,
                      long timeToLive) throws JMSException {
    super.send(topic, message, deliveryMode, priority, timeToLive);
  }
}
TOP

Related Classes of org.objectweb.joram.client.jms.TopicPublisher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.