Interface BenchmarkOperation

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface BenchmarkOperation
Benchmark operation called when benchmarking.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    perform​(io.vertx.core.Promise<Void> promise)
    Returns a future so that benchmark operations may be composed in order.
  • Method Details

    • perform

      void perform(io.vertx.core.Promise<Void> promise)
      Returns a future so that benchmark operations may be composed in order.
      Parameters:
      promise - a future to be completed when the operation is done.