Uses of Interface
io.ebean.BackgroundExecutor
Packages that use BackgroundExecutor
Package
Description
Server Cache Service
Database platform specific support
DB2 specific support.
H2 specific support.
Hsqldb specific support.
NuoDB specific support.
Oracle specific support.
Postgres specific support.
SqlServer specific support.
-
Uses of BackgroundExecutor in io.ebean
Methods in io.ebean that return BackgroundExecutorModifier and TypeMethodDescriptionDatabase.getBackgroundExecutor()
Return the BackgroundExecutor service for asynchronous processing of queries.static BackgroundExecutor
Return the BackgroundExecutor service for asynchronous processing of queries.static BackgroundExecutor
Ebean.getBackgroundExecutor()
Deprecated.Return the BackgroundExecutor service for asynchronous processing of queries. -
Uses of BackgroundExecutor in io.ebean.cache
Methods in io.ebean.cache with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionServerCachePlugin.create(DatabaseConfig config, BackgroundExecutor executor)
Create the ServerCacheFactory given the server config and background executor service. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform
Methods in io.ebean.config.dbplatform with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionDatabasePlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Return a DB Sequence based IdGenerator.Constructors in io.ebean.config.dbplatform with parameters of type BackgroundExecutorModifierConstructorDescriptionSequenceBatchIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
Construct where batchSize is the sequence step size. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.db2
Methods in io.ebean.config.dbplatform.db2 with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionDB2Platform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Return a DB2 specific sequence IdGenerator that supports batch fetching sequence values.Constructors in io.ebean.config.dbplatform.db2 with parameters of type BackgroundExecutorModifierConstructorDescriptionDB2SequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
Construct given a dataSource and sql to return the next sequence value. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.h2
Methods in io.ebean.config.dbplatform.h2 with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionH2Platform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Return a H2 specific sequence IdGenerator that supports batch fetching sequence values.Constructors in io.ebean.config.dbplatform.h2 with parameters of type BackgroundExecutorModifierConstructorDescriptionH2SequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
Construct given a dataSource and sql to return the next sequence value. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.hsqldb
Methods in io.ebean.config.dbplatform.hsqldb with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionHsqldbPlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
-
Uses of BackgroundExecutor in io.ebean.config.dbplatform.nuodb
Methods in io.ebean.config.dbplatform.nuodb with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionNuoDbPlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Constructors in io.ebean.config.dbplatform.nuodb with parameters of type BackgroundExecutorModifierConstructorDescriptionNuoDbSequence(BackgroundExecutor be, DataSource ds, String seqName, int stepSize)
Construct where batchSize is the sequence step size. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.oracle
Methods in io.ebean.config.dbplatform.oracle with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionOraclePlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Constructors in io.ebean.config.dbplatform.oracle with parameters of type BackgroundExecutorModifierConstructorDescriptionOracleSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
Construct given a dataSource and sql to return the next sequence value. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.postgres
Methods in io.ebean.config.dbplatform.postgres with parameters of type BackgroundExecutorModifier and TypeMethodDescriptionPostgresPlatform.createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Create a Postgres specific sequence IdGenerator.Constructors in io.ebean.config.dbplatform.postgres with parameters of type BackgroundExecutorModifierConstructorDescriptionPostgresSequenceIdGenerator(BackgroundExecutor be, DataSource ds, String seqName, int batchSize)
Construct given a dataSource and sql to return the next sequence value. -
Uses of BackgroundExecutor in io.ebean.config.dbplatform.sqlserver
Constructors in io.ebean.config.dbplatform.sqlserver with parameters of type BackgroundExecutorModifierConstructorDescriptionSqlServerStepSequence(BackgroundExecutor be, DataSource ds, String seqName, int stepSize)
Construct where batchSize is the sequence step size.