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
Right now, have to do this:
from(...).transform { exchange, type -> ... }.setBody { exchange, type -> ... }
Most of the time, I don't care about the type argument, I want to do something similar to this:
type
from(...).transform { ... }.setBody { ... }
where the implicit it is just exchange.
it
exchange
The text was updated successfully, but these errors were encountered:
There are too many methods that uses Expression, and I don't think there's a way to add this support to all of them with small effort.
Expression
Perhaps by adding groovy(Closure) method in ExpressionClause?
groovy(Closure)
ExpressionClause
from(...).transform().groovy { ... }.setBody().groovy { ... }
Sorry, something went wrong.
No branches or pull requests
Right now, have to do this:
Most of the time, I don't care about the
type
argument, I want to do something similar to this:where the implicit
it
is justexchange
.The text was updated successfully, but these errors were encountered: