Uses of Interface
com.avaje.ebean.BackgroundExecutor

Packages that use BackgroundExecutor
com.avaje.ebean Core API (see Ebean and EbeanServer). 
com.avaje.ebean.config.dbplatform Database platform specific support 
 

Uses of BackgroundExecutor in com.avaje.ebean
 

Methods in com.avaje.ebean that return BackgroundExecutor
 BackgroundExecutor EbeanServer.getBackgroundExecutor()
          Return the BackgroundExecutor service for asynchronous processing of queries.
static BackgroundExecutor Ebean.getBackgroundExecutor()
          Return the BackgroundExecutor service for asynchronous processing of queries.
 

Uses of BackgroundExecutor in com.avaje.ebean.config.dbplatform
 

Methods in com.avaje.ebean.config.dbplatform with parameters of type BackgroundExecutor
 IdGenerator SQLitePlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Return null in case there is a sequence annotation.
 IdGenerator PostgresPlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Create a Postgres specific sequence IdGenerator.
 IdGenerator Oracle10Platform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
           
 IdGenerator MySqlPlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Return null in case there is a sequence annotation.
 IdGenerator H2Platform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Return a H2 specific sequence IdGenerator that supports batch fetching sequence values.
 IdGenerator DB2Platform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Return a DB2 specific sequence IdGenerator that supports batch fetching sequence values.
 IdGenerator DatabasePlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Return a DB Sequence based IdGenerator.
 

Constructors in com.avaje.ebean.config.dbplatform with parameters of type BackgroundExecutor
DB2SequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Construct given a dataSource and sql to return the next sequence value.
H2SequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Construct given a dataSource and sql to return the next sequence value.
OracleSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Construct given a dataSource and sql to return the next sequence value.
PostgresSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Construct given a dataSource and sql to return the next sequence value.
SequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
          Construct given a dataSource and sql to return the next sequence value.
 



Copyright © 2010. All Rights Reserved.