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

io.vtom.vertx.pipeline.step.Step Maven / Gradle / Ivy

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

public class Step {

  private VtmStepContext context;

  Step(VtmStepContext context) {
    this.context = context;
  }

  public Step(StepStack stepstack) {
    this(new VtmStepContext<>(stepstack));
  }

  public static  Step with(StepStack stepstack) {
    return new Step<>(stepstack);
  }

  protected VtmStepContext context() {
    return this.context;
  }

  public Step id(String id) {
    this.context.id(id);
    return this;
  }

  public Step ord(int ord) {
    this.context.ord(ord);
    return this;
  }

  public Step after(int after) {
    this.context.after(after);
    return this;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy