]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/runtime/SlcAgent.java
Make jms more robust
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / runtime / SlcAgent.java
index a0bb783d00f040b4f7d3499403e67515cab5fcd1..b97aa6e904d87f8cd4525633e53a5083a1e3b762 100644 (file)
@@ -3,6 +3,7 @@ package org.argeo.slc.runtime;
 import java.util.List;
 
 import org.argeo.slc.execution.ExecutionModuleDescriptor;
+import org.argeo.slc.process.SlcExecution;
 
 /** A local agent, able to run SLC Execution locally. */
 public interface SlcAgent {
@@ -11,4 +12,8 @@ public interface SlcAgent {
 
        public List<ExecutionModuleDescriptor> listExecutionModuleDescriptors();
 
+       public void runSlcExecution(SlcExecution slcExecution);
+
+       /** @return true if still alive. */
+       public boolean ping();
 }