root/trunk/src/main/php/net/stubbles/websites/cache/stubWebsiteCacheFactory.php

Revision 1459, 0.7 kB (checked in by mikey, 2 months ago)

preparation of enhancement #133: refactored caching processor out of memphis processor, new caching processor still needs a test. website cache does not require session any more

Line 
1 <?php
2 /**
3  * Interface for website cache factories.
4  *
5  * @author      Frank Kleine <mikey@stubbles.net>
6  * @package     stubbles
7  * @subpackage  websites_cache
8  */
9 stubClassLoader::load('net::stubbles::websites::processors::stubProcessor');
10 /**
11  * Interface for website cache factories.
12  *
13  * @package     stubbles
14  * @subpackage  websites_cache
15  */
16 interface stubWebsiteCacheFactory extends stubObject
17 {
18     /**
19      * configures the processor with a website cache factory and returns the
20      * configured processor
21      *
22      * @param   stubProcessor  $processor
23      * @return  stubProcessor
24      */
25     public function configure(stubProcessor $processor);
26 }
27 ?>
Note: See TracBrowser for help on using the browser.