接口 Optimizer
-
- 所有已知实现类:
AbstractOptimizer,HiLoOptimizer,LegacyHiLoAlgorithmOptimizer,NoopOptimizer,PooledLoOptimizer,PooledLoThreadLocalOptimizer,PooledOptimizer
public interface OptimizerPerforms optimization on an optimizable identifier generator. Typically this optimization takes the form of trying to ensure we do not have to hit the database on each and every request to get an identifier value. Optimizers work on constructor injection. They should provide a constructor with the following arguments- java.lang.Class - The return type for the generated values
- int - The increment size
- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 booleanapplyIncrementSizeToSourceValues()Are increments to be applied to the values stored in the underlying value source?Serializablegenerate(AccessCallback callback)Generate an identifier value accounting for this specific optimization.intgetIncrementSize()Retrieves the defined increment size.IntegralDataTypeHoldergetLastSourceValue()A common means to access the last value obtained from the underlying source.
-
-
-
方法详细资料
-
generate
Serializable generate(AccessCallback callback)
Generate an identifier value accounting for this specific optimization. All known implementors are synchronized. Consider carefully if a new implementation could drop this requirement.- 参数:
callback- Callback to access the underlying value source.- 返回:
- The generated identifier value.
-
getLastSourceValue
IntegralDataTypeHolder getLastSourceValue()
A common means to access the last value obtained from the underlying source. This is intended for testing purposes, since accessing the underlying database source directly is much more difficult.- 返回:
- The last value we obtained from the underlying source; null indicates we have not yet consulted with the source.
-
getIncrementSize
int getIncrementSize()
Retrieves the defined increment size.- 返回:
- The increment size.
-
applyIncrementSizeToSourceValues
boolean applyIncrementSizeToSourceValues()
Are increments to be applied to the values stored in the underlying value source?- 返回:
- True if the values in the source are to be incremented according to the defined increment size; false otherwise, in which case the increment is totally an in memory construct.
-
-