]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_
Network package writer added, shutdown refactured, fixes:
[hub.git] / application / hub / main / nodes / class_
index 215ade831d97fb3ada617df6911cbabe6479ecb3..02a4cbd631bfc3a79f449d572604a759edfc81c1 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, 2010 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
         *
@@ -61,11 +61,27 @@ class Hub???Node extends BaseHubNode implements NodeHelper {
                // Call generic (parent) bootstrapping method first
                parent::doGenericBootstrapping();
                $this->partialStub('Please implement this method.');
+       }
 
-               // This is the last line: output teaser
-               $this->outputTeaserLines();
+       /**
+        * 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
        }
 }
 
-// [EOF]
+//
 ?>