[Zodb-checkins] CVS: ZODB3/ZEO - ClientStub.py:1.10.36.1
Jeremy Hylton
jeremy@zope.com
Tue, 17 Dec 2002 14:02:46 -0500
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv2612
Modified Files:
Tag: ZODB3-fast-restart-branch
ClientStub.py
Log Message:
Add invalidationTransaction method to client stub.
=== ZODB3/ZEO/ClientStub.py 1.10 => 1.10.36.1 ===
--- ZODB3/ZEO/ClientStub.py:1.10 Tue Oct 1 14:38:22 2002
+++ ZODB3/ZEO/ClientStub.py Tue Dec 17 14:02:45 2002
@@ -52,6 +52,9 @@
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)