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

com.avaje.ebean.delegate.InterceptFindSqlQuery Maven / Gradle / Ivy

package com.avaje.ebean.delegate;

import com.avaje.ebean.QueryEachConsumer;
import com.avaje.ebean.QueryEachWhileConsumer;
import com.avaje.ebean.SqlQuery;
import com.avaje.ebean.SqlRow;
import com.avaje.ebean.Transaction;

import java.util.List;

/**
 * Interception for SqlQuery.
 */
public interface InterceptFindSqlQuery {

  List findList(SqlQuery query, Transaction transaction);

  SqlRow findUnique(SqlQuery query, Transaction transaction);

  void findEach(SqlQuery sqlQuery, QueryEachConsumer consumer, Transaction transaction);

  void findEachWhile(SqlQuery sqlQuery, QueryEachWhileConsumer consumer, Transaction transaction);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy