summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-09-25 11:16:00 +0200
committerJose <jose@zeroc.com>2014-09-25 11:16:00 +0200
commitf6d17fdeefe51b77267d16c6ece7439135564acc (patch)
treef52eb378bb4ccadb624cca3c568008f41210ed57 /cpp/src/Ice/Proxy.cpp
parentFix (ICE-5662) - OpenSSL implementation should print list of enabled ciphers (diff)
downloadice-f6d17fdeefe51b77267d16c6ece7439135564acc.tar.bz2
ice-f6d17fdeefe51b77267d16c6ece7439135564acc.tar.xz
ice-f6d17fdeefe51b77267d16c6ece7439135564acc.zip
Remove leftovers of the old AMI mapping
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp117
1 files changed, 0 insertions, 117 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 87baa329e8d..96721bea8f7 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -744,56 +744,6 @@ IceProxy::Ice::Object::ice_invoke(const string& operation,
return ice_invoke(operation, mode, inPair, outEncaps, context);
}
-
-bool
-IceProxy::Ice::Object::ice_invoke_async(const AMI_Object_ice_invokePtr& cb,
- const string& operation,
- OperationMode mode,
- const vector<Byte>& inEncaps)
-{
- Callback_Object_ice_invokePtr del;
- if(dynamic_cast< ::Ice::AMISentCallback*>(cb.get()))
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Object_ice_invoke::__response,
- &AMI_Object_ice_invoke::__exception,
- &AMI_Object_ice_invoke::__sent);
- }
- else
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Object_ice_invoke::__response,
- &AMI_Object_ice_invoke::__exception);
- }
- ::Ice::AsyncResultPtr result = begin_ice_invoke(operation, mode, inEncaps, del);
- return result->sentSynchronously();
-}
-
-bool
-IceProxy::Ice::Object::ice_invoke_async(const AMI_Object_ice_invokePtr& cb,
- const string& operation,
- OperationMode mode,
- const vector<Byte>& inEncaps,
- const Context& context)
-{
- Callback_Object_ice_invokePtr del;
- if(dynamic_cast< ::Ice::AMISentCallback*>(cb.get()))
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Object_ice_invoke::__response,
- &AMI_Object_ice_invoke::__exception,
- &AMI_Object_ice_invoke::__sent);
- }
- else
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Object_ice_invoke::__response,
- &AMI_Object_ice_invoke::__exception);
- }
- ::Ice::AsyncResultPtr result = begin_ice_invoke(operation, mode, inEncaps, context, del);
- return result->sentSynchronously();
-}
-
AsyncResultPtr
IceProxy::Ice::Object::begin_ice_invoke(const string& operation,
OperationMode mode,
@@ -857,55 +807,6 @@ IceProxy::Ice::Object::ice_invoke(const string& operation,
return ok;
}
-bool
-IceProxy::Ice::Object::ice_invoke_async(const AMI_Array_Object_ice_invokePtr& cb,
- const string& operation,
- OperationMode mode,
- const pair<const Byte*, const Byte*>& inEncaps)
-{
- Callback_Object_ice_invokePtr del;
- if(dynamic_cast< ::Ice::AMISentCallback*>(cb.get()))
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Array_Object_ice_invoke::__response,
- &AMI_Array_Object_ice_invoke::__exception,
- &AMI_Array_Object_ice_invoke::__sent);
- }
- else
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Array_Object_ice_invoke::__response,
- &AMI_Array_Object_ice_invoke::__exception);
- }
- ::Ice::AsyncResultPtr result = begin_ice_invoke(operation, mode, inEncaps, del);
- return result->sentSynchronously();
-}
-
-bool
-IceProxy::Ice::Object::ice_invoke_async(const AMI_Array_Object_ice_invokePtr& cb,
- const string& operation,
- OperationMode mode,
- const pair<const Byte*, const Byte*>& inEncaps,
- const Context& context)
-{
- Callback_Object_ice_invokePtr del;
- if(dynamic_cast< ::Ice::AMISentCallback*>(cb.get()))
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Array_Object_ice_invoke::__response,
- &AMI_Array_Object_ice_invoke::__exception,
- &AMI_Array_Object_ice_invoke::__sent);
- }
- else
- {
- del = newCallback_Object_ice_invoke(cb,
- &AMI_Array_Object_ice_invoke::__response,
- &AMI_Array_Object_ice_invoke::__exception);
- }
- ::Ice::AsyncResultPtr result = begin_ice_invoke(operation, mode, inEncaps, context, del);
- return result->sentSynchronously();
-}
-
AsyncResultPtr
IceProxy::Ice::Object::begin_ice_invoke(const string& operation,
OperationMode mode,
@@ -1538,24 +1439,6 @@ IceProxy::Ice::Object::ice_flushBatchRequests()
__og.invoke();
}
-bool
-IceProxy::Ice::Object::ice_flushBatchRequests_async(const AMI_Object_ice_flushBatchRequestsPtr& cb)
-{
- Callback_Object_ice_flushBatchRequestsPtr __del;
- if(dynamic_cast< AMISentCallback*>(cb.get()))
- {
- __del = newCallback_Object_ice_flushBatchRequests(cb,
- &AMI_Object_ice_flushBatchRequests::__exception,
- &AMI_Object_ice_flushBatchRequests::__sent);
- }
- else
- {
- __del = newCallback_Object_ice_flushBatchRequests(cb, &AMI_Object_ice_flushBatchRequests::__exception);
- }
- ::Ice::AsyncResultPtr result = begin_ice_flushBatchRequestsInternal(__del, 0);
- return result->sentSynchronously();
-}
-
::Ice::AsyncResultPtr
IceProxy::Ice::Object::begin_ice_flushBatchRequestsInternal(const ::IceInternal::CallbackBasePtr& del,
const ::Ice::LocalObjectPtr& cookie)