INNER CODE UNIT · Java
setTaskFuture
jolie/jolie · jolie/src/main/java/jolie/ExecutionThread.java:170
private void setTaskFuture( Future< ? > taskFuture ) {
this.taskFuture = taskFuture;
}
/**
* Sets if this thread can be interrupted by a fault signal or not.
*/
public void setCanBeInterrupted( boolean b ) {
canBeInterrupted = b;
}
/**
* Constructor
*
* @param process the Process to be executed by this thread
* @param parent the parent of this thread
*/
public ExecutionThread( Process process, ExecutionThread parent ) {