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

io.vtom.vertx.pipeline.PipeComponent Maven / Gradle / Ivy

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

import io.vertx.core.Vertx;
import io.vtom.vertx.pipeline.step.StepIN;

public interface PipeComponent {

  default PipeStep dependency(Vertx vertx) {
    return this.dependency(Pipeline.pipeline(vertx));
  }

  PipeStep dependency(Pipeline pipeline);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy