We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This facilitates using reflection to extract accurate API metadata.
For example
@EventuateCommandHandler(subscriberId="customerCommandDispatcher", channel="customerService") public ReserveCreditResult reserveCredit(CommandMessage<ReserveCreditCommand> cm) { ReserveCreditCommand cmd = cm.getCommand(); try { customerService.reserveCredit(cmd.customerId(), cmd.orderId(), cmd.orderTotal()); return new CustomerCreditReserved(); } catch (CustomerNotFoundException e) { return new CustomerNotFound(); } catch (CustomerCreditLimitExceededException e) { return new CustomerCreditLimitExceeded(); } }
The text was updated successfully, but these errors were encountered:
#210 Implement @EventuateCommandHandler
17336eb
#210 Implement @EventuateDomainEventHandler
2413651
No branches or pull requests
This facilitates using reflection to extract accurate API metadata.
For example
The text was updated successfully, but these errors were encountered: