summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/python/Ice/__init__.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/python/python/Ice/__init__.py b/python/python/Ice/__init__.py
index a5cd8990c44..dbb28e2b031 100644
--- a/python/python/Ice/__init__.py
+++ b/python/python/Ice/__init__.py
@@ -820,28 +820,6 @@ define the start and stop methods.'''
to terminate.'''
pass
-class BatchRequest(object):
- '''Base class for batch request interceptor. A subclass must
-define the enqueue method.'''
- def __init__(self, size, operation, proxy):
- self._size = size
- self._operation = operation
- self._proxy = proxy
-
- def getSize():
- return self._size
-
- def getOperation():
- return self._operation
-
- def getProxy():
- return self._proxy
-
- def enqueue():
- '''Call enqueue from the batch request interceptor enqueue
-implementation to confirm the batching a this request.'''
- pass
-
class BatchRequestInterceptor(object):
'''Base class for batch request interceptor. A subclass must
define the enqueue method.'''