ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file Backend.php

Documentation is available at Backend.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Cache
  23.  * @package    ForwardFW
  24.  * @subpackage Interface
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.8
  31.  */
  32.  
  33. require_once 'ForwardFW/Config/Cache/Backend.php';
  34. require_once 'ForwardFW/Interface/Application.php';
  35.  
  36. /**
  37.  * Interface for a Cache.
  38.  *
  39.  * @category   Cache
  40.  * @package    ForwardFW
  41.  * @subpackage Interface
  42.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  43.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  44.  * @link       http://forwardfw.sourceforge.net
  45.  */
  46. {
  47.     /**
  48.      * Constructor
  49.      *
  50.      * @param ForwardFW_Interface_Application $application The running application.
  51.      * @param ForwardFW_Config_Cache_Backend  $config      Configuration of Backend.
  52.      *
  53.      * @return void 
  54.      */
  55.     public function __construct(
  56.         ForwardFW_Interface_Application $application,
  57.         ForwardFW_Config_Cache_Backend $config
  58.     );
  59.  
  60.     /**
  61.      * Gets data from Cache.
  62.      *
  63.      * @param string  $strHash Hash for data.
  64.      * @param integer $nTime   Oldest Time of data in cache.
  65.      *
  66.      * @return mixed Data from cache
  67.      */
  68.     public function getData($strHash$nTime);
  69.  
  70.     /**
  71.      * Sets data from Cache.
  72.      *
  73.      * @param string $strHash Hash for data.
  74.      * @param mixed  $mData   Data to save into cache.
  75.      *
  76.      * @return void 
  77.      */
  78.     public function setData($strHash$mData);
  79.  
  80.     /**
  81.      * Clears data from Cache.
  82.      *
  83.      * @param string $strHash Hash for data.
  84.      *
  85.      * @return void 
  86.      */
  87.     public function unsetData($strHash);
  88.  
  89.     /**
  90.      * Sets marker that cache will be generated yet.
  91.      *
  92.      * @param string $strHash Hash of cache which is generated.
  93.      *
  94.      * @return void 
  95.      */
  96.     public function setGenerating($strHash);
  97. }
  98. ?>

Documentation generated on Sun, 30 Jan 2011 20:46:38 +0100 by phpDocumentor 1.4.3