Shot in the dark for anyone here that is familiar with vertx. 🙂
Anyone know if there a nice way to have compose() return multiple values? Or a nice way to provide data from a previous compose result?
Ideally i'd have code that would read like this
.compose(foo -> Future.succeededFuture(field1))
.compose(bar -> Future.succeededFuture(field2))
.compose([field1,field2] -> Future.succeededFuture(field3))
...
but im not sure if this is possible at first glance