[jboss-cvs] JBossAS SVN: r98801 - 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:06:01 EST 2009


Author: jaikiran
Date: 2009-12-22 13:06:01 -0500 (Tue, 22 Dec 2009)
New Revision: 98801

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/ServerSession.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/ServerSession.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/ServerSession.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/ServerSession.java	2009-12-22 18:05:54 UTC (rev 98800)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/ServerSession.java	2009-12-22 18:06:01 UTC (rev 98801)
@@ -1,93 +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 <CODE>ServerSession</CODE> object is an application server object that 
- * is used by a server to associate a thread with a JMS session (optional).
- *
- * <P>A <CODE>ServerSession</CODE> implements two methods:
- *
- * <UL>
- *   <LI><CODE>getSession</CODE> - returns the <CODE>ServerSession</CODE>'s 
- *       JMS session.
- *   <LI><CODE>start</CODE> - starts the execution of the 
- *       <CODE>ServerSession</CODE> 
- *       thread and results in the execution of the JMS session's 
- *       <CODE>run</CODE> method.
- * </UL>
- *
- * <P>A <CODE>ConnectionConsumer</CODE> implemented by a JMS provider uses a 
- * <CODE>ServerSession</CODE> to process one or more messages that have 
- * arrived. It does this by getting a <CODE>ServerSession</CODE> from the 
- * <CODE>ConnectionConsumer</CODE>'s <CODE>ServerSessionPool</CODE>; getting 
- * the <CODE>ServerSession</CODE>'s JMS session; loading it with the messages; 
- * and then starting the <CODE>ServerSession</CODE>.
- *
- * <P>In most cases the <CODE>ServerSession</CODE> will register some object 
- * it provides as the <CODE>ServerSession</CODE>'s thread run object. The 
- * <CODE>ServerSession</CODE>'s <CODE>start</CODE> method will call the 
- * thread's <CODE>start</CODE> method, which will start the new thread, and 
- * from it, call the <CODE>run</CODE> method of the 
- * <CODE>ServerSession</CODE>'s run object. This object will do some 
- * housekeeping and then call the <CODE>Session</CODE>'s <CODE>run</CODE> 
- * method. When <CODE>run</CODE> returns, the <CODE>ServerSession</CODE>'s run 
- * object can return the <CODE>ServerSession</CODE> to the 
- * <CODE>ServerSessionPool</CODE>, and the cycle starts again.
- *
- * <P>Note that the JMS API does not architect how the 
- * <CODE>ConnectionConsumer</CODE> loads the <CODE>Session</CODE> with 
- * messages. Since both the <CODE>ConnectionConsumer</CODE> and 
- * <CODE>Session</CODE> are implemented by the same JMS provider, they can 
- * accomplish the load using a private mechanism.
- *
- * @see         javax.jms.ServerSessionPool
- * @see         javax.jms.ConnectionConsumer
- */
-
-public interface ServerSession
-{
-
-   /** Return the <CODE>ServerSession</CODE>'s <CODE>Session</CODE>. This must 
-    * be a <CODE>Session</CODE> created by the same <CODE>Connection</CODE> 
-    * that will be dispatching messages to it. The provider will assign one or
-    * more messages to the <CODE>Session</CODE> 
-    * and then call <CODE>start</CODE> on the <CODE>ServerSession</CODE>.
-    *
-    * @return the server session's session
-    *  
-    * @exception JMSException if the JMS provider fails to get the associated
-    *                         session for this <CODE>ServerSession</CODE> due
-    *                         to some internal error.
-    **/
-
-   Session getSession() throws JMSException;
-
-   /** Cause the <CODE>Session</CODE>'s <CODE>run</CODE> method to be called 
-    * to process messages that were just assigned to it.
-    *  
-    * @exception JMSException if the JMS provider fails to start the server
-    *                         session to process messages due to some internal
-    *                         error.
-    */
-
-   void start() throws JMSException;
-}




More information about the jboss-cvs-commits mailing list