Hi,
Does Deuce support nested transaction? It does
not seem like it support nested transaction. I have a
program like the following and it gives me error
Class C extends Thread {
public static int i = 0;
public void run() {
atomic {
i--;
C next = new c();
next.start();
try {
next.join();
} catch(Exception e){}
}
}
}
Exception in thread "Thread-0" java.lang.NoSuchMethodError:
C.start(Lorg/deuce/transaction/Context;)V
Would you please advise. Sorry if I miss anything obvious.
Or is there any way I can get around it?
Thank you very much,
Sincerely,
Yuheng