Chris@0: . Chris@0: */ Chris@0: Chris@0: namespace Doctrine\Common\Cache; Chris@0: Chris@0: /** Chris@0: * Interface for cache that can be flushed. Chris@0: * Chris@0: * @link www.doctrine-project.org Chris@0: * @since 1.4 Chris@0: * @author Adirelle Chris@0: */ Chris@0: interface FlushableCache Chris@0: { Chris@0: /** Chris@0: * Flushes all cache entries, globally. Chris@0: * Chris@0: * @return bool TRUE if the cache entries were successfully flushed, FALSE otherwise. Chris@0: */ Chris@0: public function flushAll(); Chris@0: }