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

io.vertx.sqlclient.impl.codec.InvalidCachedStatementEvent Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
package io.vertx.sqlclient.impl.codec;

/**
 * An event signals when a cached prepared statement is invalid and needs to be evicted from the cache.
 */
public class InvalidCachedStatementEvent {
  private final String sql;

  public InvalidCachedStatementEvent(String sql) {
    this.sql = sql;
  }

  public String sql() {
    return sql;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy