X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fstreams%2Foutput%2Fclass_OutputStreamable.php;fp=inc%2Fclasses%2Finterfaces%2Fstreams%2Foutput%2Fclass_OutputStreamable.php;h=b2844b03d8542998e6e99ed1ae6b2023093cbbd9;hp=dc9b9995b1c970a00278039c01edfc75da880f1f;hb=b080b8a445af97f1e7db08d70a762737296fb6a5;hpb=e7040f10e90178e789f97ef7e195b479250e241a diff --git a/inc/classes/interfaces/streams/output/class_OutputStreamable.php b/inc/classes/interfaces/streams/output/class_OutputStreamable.php index dc9b9995..b2844b03 100644 --- a/inc/classes/interfaces/streams/output/class_OutputStreamable.php +++ b/inc/classes/interfaces/streams/output/class_OutputStreamable.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 OutputStreamable extends Streamable { +interface OutputStreamable 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]