public interface IBinManager
Modifier and Type | Method and Description |
---|---|
void |
deinstall()
Uninstall.
|
double[] |
getIncrementBinValues(String binName,
double newBinValue,
int count)
Get N bin values (and set next one).
|
double[] |
getIncrementBinValuesInTransaction(String binName,
double newBinValue,
int count)
Get N bin values (and set next one).
|
void |
install()
Install or upgrade this table.
|
void |
reset()
Reset all bins
|
static final String _rcsid
void install() throws ManifoldCFException
ManifoldCFException
void deinstall() throws ManifoldCFException
ManifoldCFException
void reset() throws ManifoldCFException
ManifoldCFException
double[] getIncrementBinValues(String binName, double newBinValue, int count) throws ManifoldCFException
binName
- is the name of the bin (256 char max)newBinValue
- is the value to use if there is no such bin yet. This is the value that will be
returned; what will be stored will be that value + 1.count
- is the number of values desired.ManifoldCFException
double[] getIncrementBinValuesInTransaction(String binName, double newBinValue, int count) throws ManifoldCFException
binName
- is the name of the bin (256 char max)newBinValue
- is the value to use if there is no such bin yet. This is the value that will be
returned; what will be stored will be that value + 1.count
- is the number of values desired.ManifoldCFException