You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final Object singletonTarget = AopProxyUtils.getSingletonTarget(eventHandlerBean);
final Object targetBean = null != singletonTarget ? singletonTarget : eventHandlerBean;
final List<EventDeliveryExceptionHandler> exceptionHandlers =
FieldUtils.getAllFieldsList(targetBean.getClass())
.stream()
.filter(this::isExceptionHandlerField)
Also would it be possible to pass information about the event in the handler:
EventDeliveryExceptionHandler ->
handle(EventDeliveryExceptionHandlerState state, Throwable t, Runnable retry, Consumer fail, Runnable ignore).
eventuate-client-java/eventuate-client-java-spring/src/main/java/io/eventuate/javaclient/spring/EventDispatcherInitializer.java
Line 78 in 80ec800
f.get()
returns nullThe text was updated successfully, but these errors were encountered: