INNER CODE UNIT · Java
isKilled
jolie/jolie · jolie/src/main/java/jolie/ExecutionThread.java:246
public boolean isKilled() {
return (killerFault != null);
}
/**
* Returns the compensator of the current executing scope.
*
* @return the compensator of the current executing scope.
*/
public synchronized Process getCurrentScopeCompensation() {
if( scopeStack.isEmpty() && parent != null ) {
return parent.getCurrentScopeCompensation();
}
return scopeStack.peek().getSelfCompensation();
}
/**