You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pd...@apache.org on 2014/05/14 17:34:31 UTC

svn commit: r1594603 - /felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java

Author: pderop
Date: Wed May 14 15:34:31 2014
New Revision: 1594603

URL: http://svn.apache.org/r1594603
Log:
Added a convenient setExecutor() method allowing to optionally override the default serial executor used by dependencymanager.

Modified:
    felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java

Modified: felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java
URL: http://svn.apache.org/viewvc/felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java?rev=1594603&r1=1594602&r2=1594603&view=diff
==============================================================================
--- felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java (original)
+++ felix/sandbox/pderop/dependencymanager-prototype/dm/src/dm/Component.java Wed May 14 15:34:31 2014
@@ -1,6 +1,7 @@
 package dm;
 
 import java.util.Dictionary;
+import java.util.concurrent.Executor;
 
 import org.osgi.framework.ServiceRegistration;
 
@@ -31,4 +32,5 @@ public interface Component {
 	public Component setComposition(String getMethod);
 	public DependencyManager getDependencyManager();
 	public ComponentDeclaration getComponentDeclaration();
+	public Component setExecutor(Executor executor);
 }