]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/tasks/node/listener/class_NodeSocketListenerTask.php
Updated 'core'.
[hub.git] / application / hub / main / tasks / node / listener / class_NodeSocketListenerTask.php
index fe4274ac55c81ed916da5227c5ea832832dc77e1..6bf9901ebc9aa87a1722dd7f7423dc874f66d2a0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A HubSocketListener 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
@@ -53,10 +53,10 @@ class NodeSocketListenerTask extends BaseTask implements Taskable, Visitable {
         */
        public function accept (Visitor $visitorInstance) {
                // Get the node instance from registry
-               $nodeInstance = Registry::getRegistry()->getInstance('node');
+               $nodeInstance = NodeObjectFactory::createNodeInstance();
 
                // Visit the pool listener task
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('LISTENER-TASK: Going to visit object ' . $nodeInstance->getListenerPoolInstance()->__toString() . ' ...');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('LISTENER-TASK[' . __METHOD__ . ':' . __LINE__ . ']: Going to visit object ' . $nodeInstance->getListenerPoolInstance()->__toString() . ' ...');
                $nodeInstance->getListenerPoolInstance()->accept($visitorInstance);
 
                // Visit this task
@@ -70,6 +70,17 @@ class NodeSocketListenerTask extends BaseTask implements Taskable, Visitable {
         * @todo        0% done
         */
        public function executeTask () {
+               $this->partialStub('Unimplemented task.');
+       }
+
+       /**
+        * Shuts down the task
+        *
+        * @return      void
+        * @todo        0% done
+        */
+       public function doShutdown () {
+               self::createDebugInstance(__CLASS__)->debugOutput('TASK[' . __METHOD__ . ':' . __LINE__ . ']: Shutting down...');
        }
 }