diff options
author | Jose <jose@zeroc.com> | 2019-07-16 18:28:18 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-07-16 18:31:07 +0200 |
commit | e7938245b6c027dd0139ed1b5ce74d4606b41a3f (patch) | |
tree | 55f9ddd66ae19e2b414737dd79e6cd314428a4d7 /python | |
parent | Fixed potential metrics test failure, fixes #217 (diff) | |
download | ice-e7938245b6c027dd0139ed1b5ce74d4606b41a3f.tar.bz2 ice-e7938245b6c027dd0139ed1b5ce74d4606b41a3f.tar.xz ice-e7938245b6c027dd0139ed1b5ce74d4606b41a3f.zip |
Remove unused class Ice.BatchRequest in Ice for Python
Diffstat (limited to 'python')
-rw-r--r-- | python/python/Ice/__init__.py | 22 |
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.''' |