Reverted last commit, better use filter pattern?!
[core.git] / inc / classes / interfaces / streams / input / class_InputStreamable.php
index fdeb6573928e89b741b4d7342e23d760cac3889b..a61fdf0ac66b9fa8f27c97307b4dd565464a089b 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface InputStreamable extends FrameworkInterface {
-       /**
-        * Streams the data and maybe does something to it
-        *
-        * @param       $data                           The data (string mostly) to "stream"
-        * @param       $handlerInstance        An instance of a Networkable class
-        * @return      $data                           The data (string mostly) to "stream"
-        */
-       function streamNetworkData ($data, Networkable $handlerInstance);
+interface InputStreamable extends Streamable {
 }
 
 // [EOF]