()
| 79 | } |
| 80 | |
| 81 | private void exceptionUnwind() throws Exception { |
| 82 | unwindTest(new Callable<Integer>() { |
| 83 | public Integer call() throws Exception { |
| 84 | throw new MyException(); |
| 85 | } |
| 86 | }); |
| 87 | } |
| 88 | |
| 89 | private void continuationUnwindTest |
| 90 | (final Function<Callback<Integer>,Integer> receiver) |