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

io.vertx.sqlclient.impl.RowInternal Maven / Gradle / Ivy

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

import io.vertx.sqlclient.Row;

/**
 * Row internal API
 */
public interface RowInternal extends Row {

  /**
   * Try to recycle the row, this shall be called by the row decoder to check whether the row
   * instance can be reused.
   *
   * @return whether the row can be reused safely
   */
  default boolean tryRecycle() {
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy