如若IOIntensive註釋在所有引用的類在Apigee邊緣的Java標註或者只是在實現com.apigee.flow.execution.spi.Execution使用IOIntensive在Apigee JavaCallouts的
對於實例類使用 - -
@IOIntensive
public class Apples implements Execution {
public ExecutionResult execute(MessageContext messageContext, ExecutionContext executionContext) {
Fruit.giveMeWorms();
return ExecutionResult.SUCCESS;
}
public class Fruit {
public static final giveMeWorms(){
//do something io intensive
}
}
在這種情況下,Fruit類還應該使用IOIntensive屬性嗎?
此外,只有當類執行I/O密集型工作! – Cheeso