File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -386,8 +386,6 @@ public BoxStoreBuilder maxSizeInKByte(long maxSizeInKByte) {
386
386
}
387
387
388
388
/**
389
- * This API is experimental and may change or be removed in future releases.
390
- * <p>
391
389
* Sets the maximum size the data stored in the database can grow to.
392
390
* When applying a transaction (e.g. putting an object) would exceed it a {@link DbMaxDataSizeExceededException}
393
391
* is thrown.
@@ -401,7 +399,6 @@ public BoxStoreBuilder maxSizeInKByte(long maxSizeInKByte) {
401
399
* When the data limit is reached, data can be removed to get below the limit again (assuming the database size limit
402
400
* is not also reached).
403
401
*/
404
- @ Experimental
405
402
public BoxStoreBuilder maxDataSizeInKByte (long maxDataSizeInKByte ) {
406
403
if (maxDataSizeInKByte >= maxSizeInKByte ) {
407
404
throw new IllegalArgumentException ("maxDataSizeInKByte must be smaller than maxSizeInKByte." );
You can’t perform that action at this time.
0 commit comments