Modifier and Type | Class and Description |
---|---|
static class |
OptimizerFactory.HiLoOptimizer
Optimizer which applies a 'hilo' algorithm in memory to achieve
optimization.
|
static interface |
OptimizerFactory.InitialValueAwareOptimizer
Marker interface for optimizer which wish to know the user-specified initial value.
|
static class |
OptimizerFactory.LegacyHiLoAlgorithmOptimizer |
static class |
OptimizerFactory.NoopOptimizer
An optimizer that performs no optimization.
|
static class |
OptimizerFactory.OptimizerSupport
Common support for optimizer implementations.
|
static class |
OptimizerFactory.PooledLoOptimizer |
static class |
OptimizerFactory.PooledOptimizer
Optimizer which uses a pool of values, storing the next low value of the
range in the database.
|
static class |
OptimizerFactory.StandardOptimizerDescriptor |
Modifier and Type | Field and Description |
---|---|
static String |
HILO
|
static String |
LEGACY_HILO
|
static String |
NONE
|
static String |
POOL
|
static String |
POOL_LO
|
Constructor and Description |
---|
OptimizerFactory() |
Modifier and Type | Method and Description |
---|---|
static Optimizer |
buildOptimizer(String type,
Class returnClass,
int incrementSize)
Deprecated.
Use
buildOptimizer(String, Class, int, long) instead |
static Optimizer |
buildOptimizer(String type,
Class returnClass,
int incrementSize,
long explicitInitialValue)
Builds an optimizer
|
static boolean |
isPooledOptimizer(String type) |
@Deprecated public static final String NONE
@Deprecated public static final String HILO
@Deprecated public static final String LEGACY_HILO
OptimizerFactory.StandardOptimizerDescriptor.getExternalName()
via OptimizerFactory.StandardOptimizerDescriptor.LEGACY_HILO
@Deprecated public static final String POOL
OptimizerFactory.StandardOptimizerDescriptor.getExternalName()
via OptimizerFactory.StandardOptimizerDescriptor.POOLED
@Deprecated public static final String POOL_LO
OptimizerFactory.StandardOptimizerDescriptor.getExternalName()
via OptimizerFactory.StandardOptimizerDescriptor.POOLED_LO
public static boolean isPooledOptimizer(String type)
@Deprecated public static Optimizer buildOptimizer(String type, Class returnClass, int incrementSize)
buildOptimizer(String, Class, int, long)
insteadtype
- The optimizer type, either a short-hand name or the Optimizer
class name.returnClass
- The generated value java typeincrementSize
- The increment size.public static Optimizer buildOptimizer(String type, Class returnClass, int incrementSize, long explicitInitialValue)
type
- The optimizer type, either a short-hand name or the Optimizer
class name.returnClass
- The generated value java typeincrementSize
- The increment size.explicitInitialValue
- The user supplied initial-value (-1 indicates the user did not specify).Copyright © 2018 JBoss by Red Hat. All rights reserved.