[hornetq-commits] JBoss hornetq SVN: r8616 - trunk/src/main/org/hornetq/core/client.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 8 05:23:20 EST 2009


Author: jmesnil
Date: 2009-12-08 05:23:19 -0500 (Tue, 08 Dec 2009)
New Revision: 8616

Added:
   trunk/src/main/org/hornetq/core/client/package-info.java
Modified:
   trunk/src/main/org/hornetq/core/client/ClientSession.java
Log:
HORNETQ-186: fill in Javadocs for core API

* documented ClientSession interface

Modified: trunk/src/main/org/hornetq/core/client/ClientSession.java
===================================================================
--- trunk/src/main/org/hornetq/core/client/ClientSession.java	2009-12-08 10:22:50 UTC (rev 8615)
+++ trunk/src/main/org/hornetq/core/client/ClientSession.java	2009-12-08 10:23:19 UTC (rev 8616)
@@ -21,33 +21,85 @@
 import org.hornetq.utils.SimpleString;
 
 /**
+ * A ClientSession is a single-thread object required for producing and consuming messages.
+ * 
  * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
  * @author <a href="mailto:clebert.suconic at jboss.org">Clebert Suconic</a>
  * @author <a href="mailto:ataylor at redhat.com">Andy Taylor</a>
- * @author <a href="jmesnil at redhat.com">Jeff Mesnil</a>
+ * @author <a href="mailto:jmesnil at redhat.com">Jeff Mesnil</a>
  * 
  */
 public interface ClientSession extends XAResource
 {
+   /**
+    * Information returned by a binding query
+    * 
+    * @see ClientSession#bindingQuery(SimpleString)
+    */
    public interface BindingQuery
    {
+      /**
+       * Return <code>true</code> if the binding exists, <code>false</code> else.
+       *
+       * @return <code>true</code> if the binding exists, <code>false</code> else
+       */
       boolean isExists();
 
+      /**
+       * Return the names of the queues bound to the binding.
+       * 
+       * @return the names of the queues bound to the binding
+       */
       public List<SimpleString> getQueueNames();
    }
 
+   /**
+    * Information returned by a queue query
+    * 
+    * @see ClientSession#queueQuery(SimpleString)
+    */
    public interface QueueQuery
    {
+      /**
+       * Return <code>true</code> if the queue exists, <code>false</code> else.
+       * 
+       * @return <code>true</code> if the queue exists, <code>false</code> else
+       */
       boolean isExists();
 
+      /**
+       * Return <code>true</code> if the queue is durable, <code>false</code> else.
+       * 
+       * @return <code>true</code> if the queue is durable, <code>false</code> else
+       */
       boolean isDurable();
 
+      /**
+       * Return the number of consumers attached to the queue.
+       * 
+       * @return the number of consumers attached to the queue
+       */
       int getConsumerCount();
 
+      /**
+       * Return the number of messages in the queue.
+       * 
+       * @return the number of messages in the queue
+       */
       int getMessageCount();
 
+      /**
+       * Return the queue's filter string (or <code>null</code> if the queue has no filter).
+       * 
+       * @return the queue's filter string (or <code>null</code> if the queue has no filter)
+       */
       SimpleString getFilterString();
 
+      /**
+       * Return the address that the queue is bound to.
+       * 
+       * @return the address that the queue is bound to
+       */
       SimpleString getAddress();
    }
 
@@ -108,7 +160,7 @@
    // Queue Operations ----------------------------------------------
 
    /**
-    * Create a queue. The created queue is <em>not</em> temporary.
+    * Create a <em>non-temporary</em> queue.
     * 
     * @param address the queue will be bound to this address
     * @param queueName the name of the queue
@@ -118,7 +170,7 @@
    void createQueue(SimpleString address, SimpleString queueName, boolean durable) throws HornetQException;
 
    /**
-    * Create a queue. The created queue is <em>not</em> temporary.
+    * Create a <em>non-temporary</em> queue.
     * 
     * @param address the queue will be bound to this address
     * @param queueName the name of the queue
@@ -128,7 +180,7 @@
    void createQueue(String address, String queueName, boolean durable) throws HornetQException;
 
    /**
-    * Create a queue. The created queue is <em>not</em> temporary and <em>not</em> durable.
+    * Create a <em>non-temporary</em> queue <em>non-durable</em> queue.
     * 
     * @param address the queue will be bound to this address
     * @param queueName the name of the queue
@@ -137,7 +189,7 @@
    void createQueue(String address, String queueName) throws HornetQException;
 
    /**
-    * Create a queue. The created queue is <em>not</em> temporary.
+    * Create a <em>non-temporary</em> queue.
     * 
     * @param address the queue will be bound to this address
     * @param queueName the name of the queue
@@ -148,7 +200,7 @@
    void createQueue(SimpleString address, SimpleString queueName, SimpleString filter, boolean durable) throws HornetQException;
 
    /**
-    * Create a queue. The created queue is <em>not</em> temporary.
+    * Create a <em>non-temporary</em>queue.
     * 
     * @param address the queue will be bound to this address
     * @param queueName the name of the queue
@@ -420,8 +472,24 @@
 
    // Query operations ----------------------------------------------
 
+   /**
+    * Query information on a queue.
+    * 
+    * @param queueName the name of the queue to query
+    * @return a QueueQuery containing information on the given queue
+    * 
+    * @throws HornetQException if an exception occurs while querying the queue
+    */
    QueueQuery queueQuery(SimpleString queueName) throws HornetQException;
 
+   /**
+    * Query information on a binding.
+    * 
+    * @param address the address of the biding to query
+    * @return a BindingQuery containing information on the binding attached to the given address
+    * 
+    * @throws HornetQException if an exception occurs while querying the binding
+    */
    BindingQuery bindingQuery(SimpleString address) throws HornetQException;
 
    // Transaction operations ----------------------------------------
@@ -493,6 +561,11 @@
     */
    boolean isBlockOnAcknowledge();
 
+   /**
+    * Set a <code>SendAcknowledgementHandler</code> for this session.
+    * 
+    * @param handler a SendAcknowledgementHandler
+    */
    void setSendAcknowledgementHandler(SendAcknowledgementHandler handler);
 
 }

Added: trunk/src/main/org/hornetq/core/client/package-info.java
===================================================================
--- trunk/src/main/org/hornetq/core/client/package-info.java	                        (rev 0)
+++ trunk/src/main/org/hornetq/core/client/package-info.java	2009-12-08 10:23:19 UTC (rev 8616)
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2009 Red Hat, Inc.
+ * Red Hat 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.
+ */
+
+/**
+ * Core API to produce and consume messages.
+ * 
+ * This package defines the API used by HornetQ clients to produce and consume messages.
+ */
+package org.hornetq.core.client;
+



More information about the hornetq-commits mailing list