io.vtom.vertx.pipeline.component.fs.action.VtmFsUnlink Maven / Gradle / Ivy
package io.vtom.vertx.pipeline.component.fs.action;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vtom.vertx.pipeline.tk.Pvtk;
public class VtmFsUnlink extends AbstractFsAction {
public VtmFsUnlink(String path) {
super(path);
}
@Override
public VtmFsOut out() {
return new AbstractVtmFsOut(stepskips()) {
@Override
public void execute(Vertx vertx, Handler> handler) {
vertx.fileSystem().unlink(path(), Pvtk.handleTo(handler));
}
};
}
}