Skip to content

Commit

Permalink
GH-3983 deprecate limitsize strategy + native store impl (#4508)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrokenjester committed Apr 17, 2023
2 parents d95d21a + 47cb4f2 commit ead3fb9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@

/**
* @author Jerven Bolleman, SIB Swiss Institute of Bioinformatics
*
* @deprecated since 4.2.4. See https://github.com/eclipse/rdf4j/issues/3983
*/
@Deprecated(forRemoval = true, since = "4.2.4")
public class LimitedSizeEvaluationStrategy extends StrictEvaluationStrategy {

private final AtomicLong used = new AtomicLong();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@

/**
* @author Jerven Bolleman, SIB Swiss Institute of Bioinformatics
*
* @deprecated since 4.2.4. See https://github.com/eclipse/rdf4j/issues/3983
*/
@Deprecated(since = "4.2.4", forRemoval = true)
public class LimitedSizeNativeStore extends NativeStore {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@

/**
* @author Jerven Bolleman, SIB Swiss Institute of Bioinformatics
*
* @deprecated since 4.2.4. See https://github.com/eclipse/rdf4j/issues/3983
*/
@Deprecated(since = "4.2.4", forRemoval = true)
public class LimitedSizeNativeStoreConnection extends NativeStoreConnection {

private int maxCollectionsSize = Integer.MAX_VALUE;
Expand Down

0 comments on commit ead3fb9

Please sign in to comment.