Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-02-12 04:32:35 +0000
committerslewis2009-02-12 04:32:35 +0000
commit5a12f98bb9e67ceaf90e1a8f93e1173ab7666dbd (patch)
tree328176ed073bcc4b533baeae6565f0fdeee8ddad
parent54120cede49114809b3c04e6459407f71902c0ef (diff)
downloadorg.eclipse.ecf-5a12f98bb9e67ceaf90e1a8f93e1173ab7666dbd.tar.gz
org.eclipse.ecf-5a12f98bb9e67ceaf90e1a8f93e1173ab7666dbd.tar.xz
org.eclipse.ecf-5a12f98bb9e67ceaf90e1a8f93e1173ab7666dbd.zip
javadocs fix
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteService.java12
1 files changed, 6 insertions, 6 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 bbc943ba3..51bfb385e 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
@@ -21,18 +21,18 @@ import org.eclipse.equinox.concurrent.future.IFuture;
* may then be used to communicate with a remote service. The methods on this
* interface support accessing the remote service in several ways:<br/>
* <ul>
- * <li>callSynch -- A synchronous invocation that will block the calling thread
+ * <li>callSync -- 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/1 -- An asynchronous invocation that will not block the caller
+ * <li>callAsync/1 -- An asynchronous invocation that will not block the caller
* thread but rather return a non-<code>null</code> {@link IFuture} instance
- * that can be polled for results. See {@link IAsyncResult#get()},
+ * that can be polled for results. See {@link IFuture#get()},
* {@link IFuture#get(long)}, and {@link IFuture#isDone()}.
* timeout, exception, or successful completion)</li>
- * <li>callAsynch/2 -- An asynchronous invocation that will not block the caller
+ * <li>callAsync/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
+ * <li>fireAsync -- An asynchronous invocation that will simply execute the
* remote method asynchronously, but will not provide any response or remote
* method failure information</li>
* <li>getProxy -- Access to a local proxy for the remote service that will
@@ -89,7 +89,7 @@ public interface IRemoteService {
*
* @param call the remote call to make. Must not be <code>null</code> .
* @return IFuture the asynchronous result to allow the caller to poll
- * for whether the result {@link IFuture#isDone()}, and then to {@link IAsyncResult#get(long)}
+ * for whether the result {@link IFuture#isDone()}, and then to {@link IFuture#get()}
* the actual result.
* @since 3.0
*/

Back to the top