I am looking for a way to invoke multiple argument methods but using a lambda construct. In the documentation it is said that lambda is only usable
lambda
In Java you need to use an array like this.
Java
test((Object[] args) -> me.call(args));
If call takes an array variable args this will work. If not you can use reflection to make the call instead.
call
args