]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_
While self-connect is running, it might be already announced which is fine
[hub.git] / application / hub / main / nodes / class_
index 17cb01b59ed22038e2c4834098e40ae6f0484ea9..99e8e9b3e8a0b4c82f52cde92042975341f2e1dd 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class Hub???Node extends BaseHubNode implements NodeHelper {
+class Hub???Node extends BaseHubNode implements NodeHelper, Registerable {
        /**
         * Protected constructor
         *
@@ -54,13 +54,32 @@ class Hub???Node extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
-               // Call generic (parent) bootstrapping method
+       public function doBootstrapping () {
+               // Call generic (parent) bootstrapping method first
                parent::doGenericBootstrapping();
-               $this->partialStub("Please implement this method.");
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * Initializes hub-specific queues
+        *
+        * @return      void
+        * @todo        Implement this method
+        */
+       public function initQueues () {
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * Add some node-specific filters
+        *
+        * @return      void
+        */
+       public function addExtraHubFilters () {
+               // Add some filters here
        }
 }