Uses of Interface
io.ebean.BackgroundExecutor
Packages that use BackgroundExecutor
Package
Description
Server Cache Service
Database platform specific support
-
Uses of BackgroundExecutor in io.ebean
Methods in io.ebean that return BackgroundExecutorModifier and TypeMethodDescriptionDatabase.backgroundExecutor()
Return the BackgroundExecutor service for asynchronous processing of queries.static BackgroundExecutor
DB.backgroundExecutor()
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
Fields in io.ebean.config.dbplatform declared as BackgroundExecutorModifier and TypeFieldDescriptionprotected final BackgroundExecutor
SequenceIdGenerator.backgroundExecutor
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.protected
SequenceIdGenerator
(BackgroundExecutor be, DataSource ds, String seqName, int allocationSize) Construct given a dataSource and sql to return the next sequence value.protected
SequenceStepIdGenerator
(BackgroundExecutor be, DataSource ds, String seqName, int stepSize) Construct with stepSize (typically 50).