在vertx 3中,我想做几个vertx.fileSystem()
操作,
每个人都取决于前一个人的成功。
如何避免以嵌套Handler<AsyncResult>
this.vertx.fileSystem().mkdir("my-temp", res -> {
if (res.succeeded()) {
this.vertx.fileSystem().move("/tmp/file.txt", "my-temp/file.txt", res2 -> {
if (res2.succeeded()) {
// having maybe even more nested Handler<AsyncResult>
}
});
}
});