diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index e1d2d8ff442..23c4728afd0 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -60,6 +60,7 @@ stringVersion = IcePy.stringVersion intVersion = IcePy.intVersion generateUUID = IcePy.generateUUID loadSlice = IcePy.loadSlice +AsyncResult = IcePy.AsyncResult # # This value is used as the default value for struct types in the constructors @@ -449,6 +450,12 @@ class CommunicatorI(Communicator): def flushBatchRequests(self): self._impl.flushBatchRequests() + def begin_flushBatchRequests(self, _ex=None, _sent=None): + return self._impl.begin_flushBatchRequests(_ex, _sent) + + def end_flushBatchRequests(self, r): + return self._impl.end_flushBatchRequests(r) + def getAdmin(self): return self._impl.getAdmin() |