Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java
index cc7c314ca..40b019d26 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java
+++ b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java
@@ -24,7 +24,12 @@ import org.eclipse.ecf.core.util.IAsyncResult;
* <li>callSynch -- A synchronous invocation that will block the calling thread
* until complete (or timeout) and return the result from the remote or throw
* exception if remote invocation fails or throws exception</li>
- * <li>callAsynch -- An asynchronous invocation that will not block the caller
+ * <li>callAsynch/1 -- An asynchronous invocation that will not block the caller
+ * thread but rather return a non-<code>null</code> {@link IAsyncResult} instance
+ * that can be polled for results. See {@link IAsyncResult#get()},
+ * {@link IAsyncResult#get(long)}, and {@link IAsyncResult#isReady()}.
+ * timeout, exception, or successful completion)</li>
+ * <li>callAsynch/2 -- An asynchronous invocation that will not block the caller
* thread but rather notify the given listener asynchronously when complete (via
* timeout, exception, or successful completion)</li>
* <li>fireAsynch -- An asynchronous invocation that will simply execute the

Back to the top