|
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 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
stubClassLoader::load('net::stubbles::websites::processors::stubProcessor'); |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 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 |
?> |
|---|