-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Feature: Param Aggregation Draft #11
Comments
But instead, we could have get("/user/{userId}")
.param(String.class)
.queryObject("page limit order", Pagination.class)
.handle((userId, pagination) -> { /* */ }); I don't have experience with fluent interfaces and the above example is highly optimistic, so this might not even work. |
I like your idea to have a
You are welcome to give it a go when you can in a month or so. This is almost 2.5 years old so it is obviously not urgent. |
@VaughnVernon delimiter ✔️ Will see, I think we have more urgent stuff to do 👍 |
#10 shares the problem when there's a meaningful amount of parameters on the handler function, this feature aims to reduce the number of parameters aggregating them into new objects.
Current:
with param aggregation:
The text was updated successfully, but these errors were encountered: