]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/tasks/node/dht/class_NodeDhtBootstrapTask.php
Updated 'core'.
[hub.git] / application / hub / main / tasks / node / dht / class_NodeDhtBootstrapTask.php
index b4614ab6da84e5b95d46fd1924ea901c75f12edf..a794cafa70be0d589a05661db287e69b64ac3fc0 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @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.shipsimu.org
  *
@@ -42,7 +42,7 @@ class NodeDhtBootstrapTask extends BaseTask implements Taskable, Visitable {
                $taskInstance = new NodeDhtBootstrapTask();
 
                // Get a DHT instance
-               $dhtInstance = DhtObjectFactory::createDhtObjectInstance('node');
+               $dhtInstance = DhtObjectFactory::createDhtInstance('node');
 
                // Set the DHT instance here
                $taskInstance->setDhtInstance($dhtInstance);
@@ -71,6 +71,16 @@ class NodeDhtBootstrapTask extends BaseTask implements Taskable, Visitable {
                // 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...');
+       }
 }
 
 // [EOF]