Package org.aksw.faraday_cage.engine
Class CompiledExecutionGraph
- java.lang.Object
-
- org.aksw.faraday_cage.engine.CompiledExecutionGraph
-
- All Implemented Interfaces:
java.lang.Runnable
public class CompiledExecutionGraph extends java.lang.Object implements java.lang.Runnable
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidandThen(java.lang.Runnable r)java.util.concurrent.CompletableFuture<java.lang.Void>getCompletionStage()java.lang.StringgetRunId()voidjoin()static <T> CompiledExecutionGraphof(ExecutionGraph<T> executionGraph)static <T> CompiledExecutionGraphof(ExecutionGraph<T> executionGraph, java.lang.String runId)voidrun()
-
-
-
Method Detail
-
of
public static <T> CompiledExecutionGraph of(ExecutionGraph<T> executionGraph)
-
of
public static <T> CompiledExecutionGraph of(ExecutionGraph<T> executionGraph, java.lang.String runId)
-
getRunId
public java.lang.String getRunId()
-
run
public void run()
- Specified by:
runin interfacejava.lang.Runnable
-
join
public void join()
-
andThen
public void andThen(java.lang.Runnable r)
-
getCompletionStage
public java.util.concurrent.CompletableFuture<java.lang.Void> getCompletionStage()
-
-