[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Caching - ICache.py:1.5

Marius Gedminas mgedmin@codeworks.lt
Thu, 12 Dec 2002 10:28:46 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Caching
In directory cvs.zope.org:/tmp/cvs-serv24277/lib/python/Zope/App/Caching

Modified Files:
	ICache.py 
Log Message:
Caching service now uses the new configuration infrastructure
Added invalidateAll to Zope.App.Caching.ICache



=== Zope3/lib/python/Zope/App/Caching/ICache.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/Caching/ICache.py:1.4	Mon Nov 25 08:48:06 2002
+++ Zope3/lib/python/Zope/App/Caching/ICache.py	Thu Dec 12 10:28:15 2002
@@ -27,6 +27,9 @@
         all entries for the object.
         """
 
+    def invalidateAll():
+        """Invalidates all cached entries."""
+
     def query(ob, key=None, default=None):
         """Returns the cached data previously stored by set().