From: Alexander Kriegisch Date: Thu, 24 Mar 2022 09:04:45 +0000 (+0700) Subject: Update README-199.html X-Git-Tag: V1_9_9~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b7d3e96ea778b48a5b3bbe445ecaa90ca97a5094;p=aspectj.git Update README-199.html Signed-off-by: Alexander Kriegisch --- diff --git a/docs/dist/doc/README-199.html b/docs/dist/doc/README-199.html index 8e09cd918..8c9c7ecfc 100644 --- a/docs/dist/doc/README-199.html +++ b/docs/dist/doc/README-199.html @@ -39,6 +39,17 @@

Improvements

+

+ In annotation style aspects, asynchronous proceed() calls in @Around advice now works in threads + created from within the advice. Previously, this was only working in native syntax aspects. There is still a + limitation with regard to asynchronous proceed, if you do not create the thread in the advice but want to use e.g. + an ExecutorService with its own thread pool. This still is not working in annotation style aspects, only in + native syntax ones. +

+

+ See issue #128 and + pull request #132 for more details. +

Code examples

@@ -56,6 +67,11 @@ Pattern matching for switch, preview 2 +

  • + + Asynchronous proceed in native vs. annotation style syntax + +
  • Other changes and bug fixes