All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vtom.vertx.pipeline.lifecycle.skip.Skip Maven / Gradle / Ivy

There is a newer version: 1.1-beta
Show newest version
package io.vtom.vertx.pipeline.lifecycle.skip;

public class Skip {

  VtmSkipContext context;

  public Skip(VtmSkipContext context) {
    this.context = context;
  }

  public static Skip skip() {
    return new VtmSkipContext().skip();
  }


  public SkipSure yes() {
    return areYouSure(true);
  }

  public SkipSure areYouSure(boolean cond) {
    return new SkipSure(this, cond);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy