X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fstreams%2Finput%2Fclass_InputStreamable.php;h=fdeb6573928e89b741b4d7342e23d760cac3889b;hp=a61fdf0ac66b9fa8f27c97307b4dd565464a089b;hb=b080b8a445af97f1e7db08d70a762737296fb6a5;hpb=e7040f10e90178e789f97ef7e195b479250e241a diff --git a/inc/classes/interfaces/streams/input/class_InputStreamable.php b/inc/classes/interfaces/streams/input/class_InputStreamable.php index a61fdf0a..fdeb6573 100644 --- a/inc/classes/interfaces/streams/input/class_InputStreamable.php +++ b/inc/classes/interfaces/streams/input/class_InputStreamable.php @@ -21,7 +21,15 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -interface InputStreamable extends Streamable { +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); } // [EOF]