[jboss-cvs] JBossAS SVN: r98795 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 13:05:19 EST 2009


Author: jaikiran
Date: 2009-12-22 13:05:19 -0500 (Tue, 22 Dec 2009)
New Revision: 98795

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/TopicSubscriber.java
Log:
Autoversioning commit:  a non-deltaV client made a change to
/projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/TopicSubscriber.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/TopicSubscriber.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/TopicSubscriber.java	2009-12-22 18:05:11 UTC (rev 98794)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/TopicSubscriber.java	2009-12-22 18:05:19 UTC (rev 98795)
@@ -1,114 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This 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 (at your option) any later version.
- *
- * This software 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 software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.jms;
-
-/** A client uses a <CODE>TopicSubscriber</CODE> object to receive messages that
- * have been published to a topic. A <CODE>TopicSubscriber</CODE> object is the
- * publish/subscribe form of a message consumer. A <CODE>MessageConsumer</CODE>
- * can be created by using <CODE>Session.createConsumer</CODE>. 
- *
- * <P>A <CODE>TopicSession</CODE> allows the creation of multiple 
- * <CODE>TopicSubscriber</CODE> objects per topic.  It will deliver each 
- * message for a topic to each
- * subscriber eligible to receive it. Each copy of the message
- * is treated as a completely separate message. Work done on one copy has
- * no effect on the others; acknowledging one does not acknowledge the
- * others; one message may be delivered immediately, while another waits
- * for its subscriber to process messages ahead of it.
- *
- * <P>Regular <CODE>TopicSubscriber</CODE> objects are not durable. They 
- * receive only messages that are published while they are active.
- *
- * <P>Messages filtered out by a subscriber's message selector will never 
- * be delivered to the subscriber. From the subscriber's perspective, they 
- * do not exist.
- *
- * <P>In some cases, a connection may both publish and subscribe to a topic.
- * The subscriber <CODE>NoLocal</CODE> attribute allows a subscriber to inhibit
- * the 
- * delivery of messages published by its own connection.
- *
- * <P>If a client needs to receive all the messages published on a topic, 
- * including the ones published while the subscriber is inactive, it uses 
- * a durable <CODE>TopicSubscriber</CODE>. The JMS provider retains a record of
- * this durable 
- * subscription and insures that all messages from the topic's publishers 
- * are retained until they are acknowledged by this durable 
- * subscriber or they have expired.
- *
- * <P>Sessions with durable subscribers must always provide the same client 
- * identifier. In addition, each client must specify a name that uniquely 
- * identifies (within client identifier) each durable subscription it creates.
- * Only one session at a time can have a <CODE>TopicSubscriber</CODE> for a 
- * particular durable subscription. 
- *
- * <P>A client can change an existing durable subscription by creating a 
- * durable <CODE>TopicSubscriber</CODE> with the same name and a new topic 
- * and/or message 
- * selector. Changing a durable subscription is equivalent to unsubscribing 
- * (deleting) the old one and creating a new one.
- *
- * <P>The <CODE>unsubscribe</CODE> method is used to delete a durable 
- * subscription. The <CODE>unsubscribe</CODE> method can be used at the 
- * <CODE>Session</CODE> or <CODE>TopicSession</CODE> level.
- * This method deletes the state being 
- * maintained on behalf of the subscriber by its provider.
- *
- * <P>Creating a <CODE>MessageConsumer</CODE> provides the same features as
- * creating a <CODE>TopicSubscriber</CODE>. To create a durable subscriber, 
- * use of <CODE>Session.CreateDurableSubscriber</CODE> is recommended. The 
- * <CODE>TopicSubscriber</CODE> is provided to support existing code.
- * 
- * @see         javax.jms.Session#createConsumer
- * @see         javax.jms.Session#createDurableSubscriber
- * @see         javax.jms.TopicSession
- * @see         javax.jms.TopicSession#createSubscriber
- * @see         javax.jms.MessageConsumer
- */
-
-public interface TopicSubscriber extends MessageConsumer
-{
-
-   /** Gets the <CODE>Topic</CODE> associated with this subscriber.
-    *  
-    * @return this subscriber's <CODE>Topic</CODE>
-    *  
-    * @exception JMSException if the JMS provider fails to get the topic for
-    *                         this topic subscriber
-    *                         due to some internal error.
-    */
-
-   Topic getTopic() throws JMSException;
-
-   /** Gets the <CODE>NoLocal</CODE> attribute for this subscriber. 
-    * The default value for this attribute is false.
-    *  
-    * @return true if locally published messages are being inhibited
-    *  
-    * @exception JMSException if the JMS provider fails to get the
-    *                         <CODE>NoLocal</CODE> attribute for
-    *                         this topic subscriber
-    *                         due to some internal error.
-    */
-
-   boolean getNoLocal() throws JMSException;
-}




More information about the jboss-cvs-commits mailing list