PHP Classes

File: src/Generics/Resettable.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   src/Generics/Resettable.php   Download  
File: src/Generics/Resettable.php
Role: Class source
Content type: text/plain
Description: Resettable interface
Class: PHP Generics
Framework for accessing streams, sockets and logs
Author: By
Last change: Update of src/Generics/Resettable.php
Date: 3 months ago
Size: 411 bytes
 

Contents

Class file image Download
<?php

/**
 * This file is part of the PHP Generics package.
 *
 * @package Generics
 */
namespace Generics;

/**
 * This interface describes a resettable implementation
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
interface Resettable
{

   
/**
     * Reset the stream pointer to beginning of stream.
     *
     * @throws ResetException in case of reset has failed
     */
   
public function reset();
}