Class CallableQueryList<T>

java.lang.Object
io.ebeaninternal.server.query.CallableQueryList<T>
All Implemented Interfaces:
Callable<List<T>>

public final class CallableQueryList<T> extends Object implements Callable<List<T>>
Represent the findList query as a Callable.
  • Constructor Details

    • CallableQueryList

      public CallableQueryList(SpiEbeanServer server, SpiQuery<T> query, boolean createdTransaction)
  • Method Details

    • call

      public List<T> call()
      Execute the query returning the resulting List.
      Specified by:
      call in interface Callable<T>