]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/visitor/tasks/class_ShutdownTaskVisitor.php
Continued with hub:
[hub.git] / application / hub / main / visitor / tasks / class_ShutdownTaskVisitor.php
index cf1753f497eb87ba44e6af4c6d3ee52f7ceb0d49..bcabb7ce957fbbd802c23caaf386595a8f390e05 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An ShutdownTask visitor
  *
- * @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, 2010 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 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
@@ -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 ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, QueryConnectorVisitor, PoolVisitor, ListenerVisitor, DecoratorVisitor {
+class ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, PoolVisitor, ListenerVisitor, DecoratorVisitor {
        /**
         * Protected constructor
         *
@@ -40,7 +40,7 @@ class ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, QueryConne
         *
         * @return      $visitorInstance                An instance a Visitorable class
         */
-       public final static function createShutdownTaskVisitor () {
+       public static final function createShutdownTaskVisitor () {
                // Get new instance
                $visitorInstance = new ShutdownTaskVisitor();
 
@@ -59,17 +59,6 @@ class ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, QueryConne
                $taskInstance->doShutdown();
        }
 
-       /**
-        * Connector visitor method for active tasks
-        *
-        * @param       $connectorInstance      A Connectable instance
-        * @return      void
-        */
-       public function visitQueryConnector (Connectable $connectorInstance) {
-               // Shutdown the connector instance
-               $connectorInstance->doShutdown();
-       }
-
        /**
         * Pool visitor method for active tasks
         *
@@ -81,18 +70,6 @@ class ShutdownTaskVisitor extends BaseVisitor implements TaskVisitor, QueryConne
                $poolInstance->doShutdown();
        }
 
-       /**
-        * Query visitor method for active queries
-        *
-        * @param       $queryInstance  A Queryable instance
-        * @return      void
-        * @todo        Does a query needs to perform some actions as an active task?
-        */
-       public function visitQuery (Queryable $queryInstance) {
-               // Shutdown the query instance
-               $queryInstance->doShutdown();
-       }
-
        /**
         * Visits the given listener instance
         *