| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see EbeanServer and Ebean).
|
| com.avaje.ebean.cache |
Server Cache Service
|
| com.avaje.ebean.config.dbplatform |
Database platform specific support
|
| Modifier and Type | Method and Description |
|---|---|
static BackgroundExecutor |
Ebean.getBackgroundExecutor()
Return the BackgroundExecutor service for asynchronous processing of
queries.
|
BackgroundExecutor |
EbeanServer.getBackgroundExecutor()
Return the BackgroundExecutor service for asynchronous processing of
queries.
|
| Modifier and Type | Method and Description |
|---|---|
ServerCacheFactory |
ServerCachePlugin.create(ServerConfig config,
BackgroundExecutor executor)
Create the ServerCacheFactory given the server config and background executor service.
|
| Modifier and Type | Field and Description |
|---|---|
protected BackgroundExecutor |
SequenceIdGenerator.backgroundExecutor |
| Modifier and Type | Method and Description |
|---|---|
PlatformIdGenerator |
HsqldbPlatform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize) |
PlatformIdGenerator |
H2Platform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize)
Return a H2 specific sequence IdGenerator that supports batch fetching
sequence values.
|
PlatformIdGenerator |
DB2Platform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize)
Return a DB2 specific sequence IdGenerator that supports batch fetching
sequence values.
|
PlatformIdGenerator |
DatabasePlatform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize)
Return a DB Sequence based IdGenerator.
|
PlatformIdGenerator |
PostgresPlatform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize)
Create a Postgres specific sequence IdGenerator.
|
PlatformIdGenerator |
MySqlPlatform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize)
Return null in case there is a sequence annotation.
|
PlatformIdGenerator |
OraclePlatform.createSequenceIdGenerator(BackgroundExecutor be,
DataSource ds,
String seqName,
int batchSize) |
| Constructor and Description |
|---|
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 © 2016. All rights reserved.