我希望能夠捕獲延續並多次恢復,這樣每個這樣的調用將獨立於其他調用。是否有可能多次恢復犀牛的延續?
例如,在下面的代碼,我想在run
方法2調用context.resumeContinuation
以導致輸出:1 1
,而不是1 2
的電流輸出。
據我所知,結果輸出的原因是我總是使用相同的scope
對象,在傳遞給第二個對象之前,第一個連續對象將被修改。因此,我似乎應該恢復原始scope
的複製,但Scriptable
沒有clone
方法(或任何等同的方法),並且使用序列化/反序列化對其進行復制也無濟於事。
P.S.我正在使用犀牛版本1.7R5。
Example.java:
import org.mozilla.javascript.*;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
public class Example {
public void run() throws IOException {
Context context = Context.enter();
context.setOptimizationLevel(-2); // Use interpreter mode.
Scriptable scope = context.initStandardObjects();
scope.put("javaProxy", scope, Context.javaToJS(this, scope));
Object capturedContinuation = null;
try {
String scriptSource =
new String(Files.readAllBytes(Paths.get("example.js")));
String scriptName = "example";
int startLine = 1;
Object securityDomain = null;
Script script =
context.compileString(scriptSource, scriptName, startLine, securityDomain);
context.executeScriptWithContinuations(script, scope);
} catch (ContinuationPending continuationPending) {
capturedContinuation = continuationPending.getContinuation();
}
Object result = "";
context.resumeContinuation(capturedContinuation, scope, result);
context.resumeContinuation(capturedContinuation, scope, result);
Context.exit();
}
public void captureContinuation() {
Context context = Context.enter();
ContinuationPending continuationPending =
context.captureContinuation();
Context.exit();
throw continuationPending;
}
public void print(int i) {
System.out.print(i + " ");
}
public static void main(String[] args) throws IOException {
new Example().run();
}
}
example.js:
var i = 1;
javaProxy.captureContinuation();
javaProxy.print(i);
i = i + 1;