]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/dht/class_
Updated 'core'.
[hub.git] / application / hub / main / dht / class_
index 5852fc9bedf8a5a5dcb4d0ab4ca9319fc37c3e1b..92d40c8f5a5b4e9767883f2065add3a7288d4a9c 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 - 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
  *
@@ -35,7 +35,7 @@ class ???DhtFacade extends BaseDht implements Distributable {
        /**
         * Creates an instance of this class
         *
-        * @return      $dhtInstance            An instance of a Distributable class
+        * @return      $dhtInstance    An instance of a Distributable class
         */
        public final static function create??? () {
                // Get new instance
@@ -44,6 +44,19 @@ class ???DhtFacade extends BaseDht implements Distributable {
                // Return the prepared instance
                return $dhtInstance;
        }
+
+       /**
+        * Registers/updates an entry in the DHT with given data from $dhtData
+        * array. Different DHT implemtations may handle this differently as they
+        * may enrich the data with more meta data.
+        *
+        * @param       $dhtData        A valid array with DHT-related data (e.g. node/peer data)
+        * @return      void
+        * @todo        0% done
+        */
+       protected function insertDataIntoDht (array $dhtData) {
+               $this->partialStub('Please implement this method.');
+       }
 }
 
 // [EOF]