]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_
While self-connect is running, it might be already announced which is fine
[hub.git] / application / hub / main / nodes / class_
index 0951d0188a22b342679948173cddc89a0e9044ab..99e8e9b3e8a0b4c82f52cde92042975341f2e1dd 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 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 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
         *
@@ -35,15 +35,52 @@ class Hub???Node extends BaseHubNode implements NodeHelper {
        /**
         * Creates an instance of this hub-node class
         *
-        * @return      $nodeInstance   An instance of this hub-node class
+        * @param       $requestInstance        An instance of a Requestable class
+        * @return      $nodeInstance           An instance of this hub-node class
         */
-       public final static function createHub???Node () {
+       public final static function createHub???Node (Requestable $requestInstance) {
                // Get a new instance
                $nodeInstance = new Hub???Node();
 
+               // Set the request instance
+               $nodeInstance->setRequestInstance($requestInstance);
+
                // Return the instance
                return $nodeInstance;
        }
+
+       /**
+        * Method to "bootstrap" the node. This step does also apply provided
+        * command-line arguments stored in the request instance. The regular node
+        * should communicate with the bootstrap-nodes at this point.
+        *
+        * @return      void
+        * @todo        Implement this method
+        */
+       public function doBootstrapping () {
+               // Call generic (parent) bootstrapping method first
+               parent::doGenericBootstrapping();
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * 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]