[Zodb-checkins] CVS: ZODB3/ZEO - ClientStub.py:1.10.36.2

Guido van Rossum guido@python.org
Tue, 17 Dec 2002 14:10:39 -0500


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv3793

Modified Files:
      Tag: ZODB3-fast-restart-branch
	ClientStub.py 
Log Message:
Rename (protocol-level) 'InvalidateTransaction' to
'invalidateTransaction'.  Get rid of invalidateTrans() since we no
longer call it.  Also rename protocol-level 'invalidate' to
'invalidateVerify' (since we're now changing the protocol incpmpatibly
anyway -- this cannot be helped).


=== ZODB3/ZEO/ClientStub.py 1.10.36.1 => 1.10.36.2 ===
--- ZODB3/ZEO/ClientStub.py:1.10.36.1	Tue Dec 17 14:02:45 2002
+++ ZODB3/ZEO/ClientStub.py	Tue Dec 17 14:10:39 2002
@@ -47,16 +47,13 @@
         self.rpc.callAsync('begin')
 
     def invalidateVerify(self, args):
-        self.rpc.callAsync('invalidate', args)
+        self.rpc.callAsync('invalidateVerify', args)
 
     def endVerify(self):
         self.rpc.callAsync('end')
 
     def invalidateTransaction(self, tid, args):
-        self.rpc.callAsync('InvalidateTransaction', tid, args)
-
-    def invalidateTrans(self, args):
-        self.rpc.callAsync('Invalidate', args)
+        self.rpc.callAsync('invalidateTransaction', tid, args)
 
     def serialnos(self, arg):
         self.rpc.callAsync('serialnos', arg)