[hornetq-commits] JBoss hornetq SVN: r12121 - trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Feb 15 11:38:35 EST 2012


Author: borges
Date: 2012-02-15 11:38:34 -0500 (Wed, 15 Feb 2012)
New Revision: 12121

Modified:
   trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ConnectorsService.java
Log:
Document class' purpose at Javadoc.

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ConnectorsService.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ConnectorsService.java	2012-02-15 16:38:20 UTC (rev 12120)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ConnectorsService.java	2012-02-15 16:38:34 UTC (rev 12121)
@@ -12,6 +12,11 @@
  */
 package org.hornetq.core.server.impl;
 
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+import java.util.concurrent.ScheduledExecutorService;
+
 import org.hornetq.core.config.Configuration;
 import org.hornetq.core.config.ConnectorServiceConfiguration;
 import org.hornetq.core.logging.Logger;
@@ -22,14 +27,13 @@
 import org.hornetq.core.server.HornetQComponent;
 import org.hornetq.utils.ConfigurationHelper;
 
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-import java.util.concurrent.ScheduledExecutorService;
-
 /**
- * @author <a href="mailto:andy.taylor at jboss.org">Andy Taylor</a>
- *         Created Jun 29, 2010
+ * ConnectorsService will pool some resource for updates, e.g. Twitter, then the changes are picked
+ * and converted into a ServerMessage for a given destination (queue).
+ * <p>
+ * It may also listen to a queue, and forward them (e.g. messages arriving at the queue are picked
+ * and tweeted to some Twitter account).
+ * @author <a href="mailto:andy.taylor at jboss.org">Andy Taylor</a> Created Jun 29, 2010
  */
 public class ConnectorsService implements HornetQComponent
 {



More information about the hornetq-commits mailing list