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

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

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

import io.ebean.meta.MetaQueryPlan;

import java.time.Instant;

/**
 * Internal database query plan being capture.
 */
public interface SpiDbQueryPlan extends MetaQueryPlan {

  /**
   * Extend with queryTimeMicros, captureCount, captureMicros and when the bind values were captured.
   */
  SpiDbQueryPlan with(long queryTimeMicros, long captureCount, long captureMicros, Instant whenCaptured);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy