]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/tasks/node/dht/class_NodeDhtBootstrapTask.php
Added missing method doShutdown().
[hub.git] / application / hub / main / tasks / node / dht / class_NodeDhtBootstrapTask.php
index 5ee47c68444e6bd7c3d6584f8379fbf7dd387cac..a794cafa70be0d589a05661db287e69b64ac3fc0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A DhtBootstrap node-task
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -42,7 +42,7 @@ class NodeDhtBootstrapTask extends BaseTask implements Taskable, Visitable {
                $taskInstance = new NodeDhtBootstrapTask();
 
                // Get a DHT instance
-               $dhtInstance = DhtObjectFactory::createDhtObjectInstance();
+               $dhtInstance = DhtObjectFactory::createDhtInstance('node');
 
                // Set the DHT instance here
                $taskInstance->setDhtInstance($dhtInstance);
@@ -66,11 +66,20 @@ class NodeDhtBootstrapTask extends BaseTask implements Taskable, Visitable {
         * Executes the task
         *
         * @return      void
-        * @todo        0% done
         */
        public function executeTask () {
-               // "Cache" the DHT instance
-               $dhtInstance = $this->getDhtInstance();
+               // Let the DHT class do the work for us
+               $this->getDhtInstance()->bootstrapDht();
+       }
+
+       /**
+        * Shuts down the task
+        *
+        * @return      void
+        * @todo        0% done
+        */
+       public function doShutdown () {
+               self::createDebugInstance(__CLASS__)->debugOutput('TASK[' . __METHOD__ . ':' . __LINE__ . ']: Shutting down...');
        }
 }