Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2004-12-21 07:04:06 +0000
committerslewis2004-12-21 07:04:06 +0000
commitdfd0aa961a89169a92bb7d8a729939db82821ce7 (patch)
treeb2952508dd07552e1e9ea54c59d01580d60ab014
parent8d558d659c0126e3275e2b789420c7c17a93c188 (diff)
downloadorg.eclipse.ecf-dfd0aa961a89169a92bb7d8a729939db82821ce7.tar.gz
org.eclipse.ecf-dfd0aa961a89169a92bb7d8a729939db82821ce7.tar.xz
org.eclipse.ecf-dfd0aa961a89169a92bb7d8a729939db82821ce7.zip
Added ISharedObjectCallEvent to pass in AsynchResult instances for event receivers to respond asynchronously
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/events/ISharedObjectCallEvent.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/events/ISharedObjectCallEvent.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/events/ISharedObjectCallEvent.java
new file mode 100644
index 000000000..6c42d8c41
--- /dev/null
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/events/ISharedObjectCallEvent.java
@@ -0,0 +1,17 @@
+/*******************************************************************************
+ * Copyright (c) 2004 Composent, Inc. and others. All rights reserved. This
+ * program and the accompanying materials are made available under the terms of
+ * the Eclipse Public License v1.0 which accompanies this distribution, and is
+ * available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors: Composent, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.eclipse.ecf.core.events;
+
+import org.eclipse.ecf.core.util.AsynchResult;
+
+public interface ISharedObjectCallEvent extends ISharedObjectEvent {
+
+ AsynchResult getAsynchResult();
+}

Back to the top