server/pool.py
branchstable
changeset 3986 cc29eddf51ad
parent 3691 ccd72f500daa
child 3998 94cc7cad3d2d
child 4212 ab6573088b4a
--- a/server/pool.py	Thu Dec 03 10:02:44 2009 +0100
+++ b/server/pool.py	Thu Dec 03 11:39:31 2009 +0100
@@ -191,7 +191,7 @@
         return -(i + 1)
 
     def handle_event(self, event):
-        """delegate event handling to the opertaion"""
+        """delegate event handling to the operation"""
         getattr(self, event)()
 
     def precommit_event(self):
@@ -222,6 +222,9 @@
         operation list
         """
 
+    def postcommit_event(self):
+        """the observed connections pool has committed"""
+
 
 class PreCommitOperation(Operation):
     """base class for operation only defining a precommit operation