]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/io/class_Streamable.php
Refacuring / possible WIP:
[core.git] / framework / main / interfaces / io / class_Streamable.php
index 3fe663d31be0e154ccd3b3d7f88b82232cbd02eb..a9dede2e1dc1bc8cba5e8375b92564d1df69eaa5 100644 (file)
@@ -28,27 +28,5 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Streamable extends FrameworkInterface {
-       /**
-        * Determines seek position
-        *
-        * @return      $seekPosition   Current seek position
-        */
-       function determineSeekPosition ();
-
-       /**
-        * Seek to given offset (default) or other possibilities as fseek() gives.
-        *
-        * @param       $offset         Offset to seek to (or used as "base" for other seeks)
-        * @param       $whence         Added to offset (default: only use offset to seek to)
-        * @return      $status         Status of file seek: 0 = success, -1 = failed
-        */
-       function seek (int $offset, int $whence = SEEK_SET);
-
-       /**
-        * Size of file stack
-        *
-        * @return      $size   Size (in bytes) of file
-        */
-       function size ();
 
 }