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

io.scalecube.benchmarks.examples.ExampleServicesBenchmarksState Maven / Gradle / Ivy

package io.scalecube.benchmarks.examples;

import io.scalecube.benchmarks.BenchmarksSettings;
import io.scalecube.benchmarks.BenchmarksState;


public class ExampleServicesBenchmarksState extends BenchmarksState {

  private ExampleService exampleService;

  public ExampleServicesBenchmarksState(BenchmarksSettings settings) {
    super(settings);
  }

  @Override
  public void beforeAll() {
    this.exampleService = new ExampleService();
  }

  public ExampleService exampleService() {
    return exampleService;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy