Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2016-02-29 17:45:40 +0000
committerslewis2016-02-29 17:45:40 +0000
commit0be1a087b6852532b2958f166d90971fad921a40 (patch)
tree4970c0312ce1e6637600734e19d5dc2c6ce5ba8f /framework/bundles
parent3a7d06b0edb1db6be9f59bffc6b6aa04e71243bd (diff)
downloadorg.eclipse.ecf-0be1a087b6852532b2958f166d90971fad921a40.tar.gz
org.eclipse.ecf-0be1a087b6852532b2958f166d90971fad921a40.tar.xz
org.eclipse.ecf-0be1a087b6852532b2958f166d90971fad921a40.zip
Simplification of API
Diffstat (limited to 'framework/bundles')
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/client/AbstractRSAClientService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/client/AbstractRSAClientService.java b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/client/AbstractRSAClientService.java
index 15c57272d..5a5a2962c 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/client/AbstractRSAClientService.java
+++ b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/client/AbstractRSAClientService.java
@@ -63,7 +63,7 @@ public abstract class AbstractRSAClientService extends AbstractClientService {
* @param remoteCall the RSARemoteCall to use to make the asynchronous remote call. Will not be <code>null</code>.
* @return Object. Should return a non-null instance of {@link org.eclipse.equinox.concurrent.future.IFuture}, {@link java.util.concurrent.Future}, or {@link java.util.concurrent.CompletableFuture}
*/
- protected abstract Object invokeAsync(RSARemoteCall remoteCall);
+ protected abstract Object invokeAsync(RSARemoteCall remoteCall) throws ECFException;
/**
* Invoke a remote call synchronously. This method should block until a value may be returned, or the remote

Back to the top