-
Feature Request
-
Resolution: Done
-
Major
-
1.0.0.Alpha4
-
None
Core needs to support registration of Interceptors of Events, not only Event handlers. This will allow for more controlled AroundInvoke operations, like Context Activations/Deactivation.
public void around(@Observes EventContext<EventType> context) { try { // do something before context.proceed(); // continue down the interceptor chain and eventually the handler list } finally { // do something after } }