Uses of Interface
io.ebean.BackgroundExecutor
-
Packages that use BackgroundExecutor Package Description io.ebean io.ebean.cache Server Cache Serviceio.ebean.config.dbplatform Database platform specific supportio.ebean.config.dbplatform.db2 DB2 specific support.io.ebean.config.dbplatform.h2 H2 specific support.io.ebean.config.dbplatform.hsqldb Hsqldb specific support.io.ebean.config.dbplatform.nuodb NuoDB specific support.io.ebean.config.dbplatform.oracle Oracle specific support.io.ebean.config.dbplatform.postgres Postgres specific support.io.ebean.config.dbplatform.sqlserver SqlServer specific support. -
-
Uses of BackgroundExecutor in io.ebean
Methods in io.ebean that return BackgroundExecutor Modifier and Type Method Description BackgroundExecutor
Database. getBackgroundExecutor()
Return the BackgroundExecutor service for asynchronous processing of queries.static BackgroundExecutor
DB. getBackgroundExecutor()
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 BackgroundExecutor Modifier and Type Method Description ServerCacheFactory
ServerCachePlugin. 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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
DatabasePlatform. 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 BackgroundExecutor Constructor Description SequenceBatchIdGenerator(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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
DB2Platform. 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 BackgroundExecutor Constructor Description DB2SequenceIdGenerator(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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
H2Platform. 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 BackgroundExecutor Constructor Description H2SequenceIdGenerator(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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
HsqldbPlatform. 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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
NuoDbPlatform. createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Constructors in io.ebean.config.dbplatform.nuodb with parameters of type BackgroundExecutor Constructor Description NuoDbSequence(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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
OraclePlatform. createSequenceIdGenerator(BackgroundExecutor be, DataSource ds, int stepSize, String seqName)
Constructors in io.ebean.config.dbplatform.oracle with parameters of type BackgroundExecutor Constructor Description OracleSequenceIdGenerator(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 BackgroundExecutor Modifier and Type Method Description PlatformIdGenerator
PostgresPlatform. 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 BackgroundExecutor Constructor Description PostgresSequenceIdGenerator(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 BackgroundExecutor Constructor Description SqlServerStepSequence(BackgroundExecutor be, DataSource ds, String seqName, int stepSize)
Construct where batchSize is the sequence step size.
-