]> git.mxchange.org Git - hub.git/blobdiff - application/hub/interfaces/recipient/class_Recipient.php
Continued on rewrite:
[hub.git] / application / hub / interfaces / recipient / class_Recipient.php
index 6d77256cc83cff97fc9ec7f7a0377bb218fb5c6e..eab4a6a69a97bfbb3c7fa3df266c499276984028 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for recipients
  *
- * @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 - 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
  */
 interface Recipient extends FrameworkInterface {
        /**
-        * Tries to resolve given recipient into session ids or ip:port combination
+        * Tries to resolve given recipient into session ids or Universal Node Locator
         * depending on implementation (hint: Template Method Pattern)
         *
         * @param       $recipient              Recipient to resolve (e.g. could be a virtual recipient or direct session id)
         * @param       $listInstance   An instance of a Listable class
+        * @param       $packageData    Valid package data array
         * @return      $resolved               Resolved recipient or VOID if only the set list has been filled
         * @throws      FrameworkException      Could throw different exceptions depending on implementation
         */
-       function resolveRecipient ($recipient, Listable $listInstance);
+       function resolveRecipient ($recipient, Listable $listInstance, array $packageData);
 }
 
 // [EOF]