summaryrefslogtreecommitdiff
path: root/java/src/Ice/ObjectPrxHelperBase.java
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 /java/src/Ice/ObjectPrxHelperBase.java
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 'java/src/Ice/ObjectPrxHelperBase.java')
-rw-r--r--java/src/Ice/ObjectPrxHelperBase.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/java/src/Ice/ObjectPrxHelperBase.java b/java/src/Ice/ObjectPrxHelperBase.java
index 9387bb4a6ba..8c8d719570a 100644
--- a/java/src/Ice/ObjectPrxHelperBase.java
+++ b/java/src/Ice/ObjectPrxHelperBase.java
@@ -1513,52 +1513,6 @@ public class ObjectPrxHelperBase implements ObjectPrx, java.io.Serializable
}
/**
- * Invokes an operation dynamically and asynchronously.
- *
- * @param cb The callback object to notify when the operation completes.
- * @param operation The name of the operation to invoke.
- * @param mode The operation mode (normal or idempotent).
- * @param inParams The encoded in-parameters for the operation.
- * @return If the operation was invoked synchronously (because there
- * was no need to queue the request), the return value is <code>true</code>;
- * otherwise, if the invocation was queued, the return value is <code>false</code>.
- *
- * @see AMI_Object_ice_invoke
- * @see OperationMode
- **/
- @Override
- public final boolean
- ice_invoke_async(AMI_Object_ice_invoke cb, String operation, OperationMode mode, byte[] inParams)
- {
- AsyncResult __result = begin_ice_invoke(operation, mode, inParams, cb);
- return __result.sentSynchronously();
- }
-
- /**
- * Invokes an operation dynamically and asynchronously.
- *
- * @param cb The callback object to notify when the operation completes.
- * @param operation The name of the operation to invoke.
- * @param mode The operation mode (normal or idempotent).
- * @param inParams The encoded in-parameters for the operation.
- * @param __context The context map for the invocation.
- * @return If the operation was invoked synchronously (because there
- * was no need to queue the request), the return value is <code>true</code>;
- * otherwise, if the invocation was queued, the return value is <code>false</code>.
- *
- * @see AMI_Object_ice_invoke
- * @see OperationMode
- **/
- @Override
- public final boolean
- ice_invoke_async(AMI_Object_ice_invoke cb, String operation, OperationMode mode, byte[] inParams,
- java.util.Map<String, String> context)
- {
- AsyncResult __result = begin_ice_invoke(operation, mode, inParams, context, cb);
- return __result.sentSynchronously();
- }
-
- /**
* Returns the identity embedded in this proxy.
*
* @return The identity of the target object.
@@ -2561,21 +2515,6 @@ public class ObjectPrxHelperBase implements ObjectPrx, java.io.Serializable
/**
* Asynchronously flushes any pending batched requests for this communicator. The call does not block.
*
- * @param cb The callback object to notify the application when the flush is complete.
- * @return <code>true</code> if the requests were flushed immediately without blocking; <code>false</code>
- * if the requests could not be flushed immediately.
- **/
- @Override
- public boolean
- ice_flushBatchRequests_async(AMI_Object_ice_flushBatchRequests cb)
- {
- AsyncResult result = begin_ice_flushBatchRequests(cb);
- return result.sentSynchronously();
- }
-
- /**
- * Asynchronously flushes any pending batched requests for this communicator. The call does not block.
- *
* @return The asynchronous result object.
**/
@Override