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

io.ebeaninternal.api.NoopQueryBindCapture Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.api;

import io.ebeaninternal.server.bind.capture.BindCapture;

final class NoopQueryBindCapture implements SpiQueryBindCapture {

  @Override
  public boolean collectFor(long timeMicros) {
    return false;
  }

  @Override
  public void setBind(BindCapture bindCapture, long timeMicros, long startNanos) {
    // do nothing
  }

  @Override
  public void queryPlanInit(long thresholdMicros) {
    // do nothing
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy