Skip to content

Instantly share code, notes, and snippets.

@leosilvadev
Created March 30, 2016 20:09
Show Gist options
  • Save leosilvadev/33a732c57748ad0cde04cdc5f6d81620 to your computer and use it in GitHub Desktop.
Save leosilvadev/33a732c57748ad0cde04cdc5f6d81620 to your computer and use it in GitHub Desktop.
def init = [name:'Leonardo', age:26]
Async(vertx, init).waterfall([{ data ->
next(data + [job:'dev'])
}, { data ->
next(data + [langs:['groovy', 'java']])
}, {
fail(new RuntimeException('any error')
}], { ex ->
println ex.message
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment