Class EvaluationStatisticsWrapper
- java.lang.Object
-
- org.eclipse.rdf4j.sail.extensiblestore.evaluationstatistics.EvaluationStatisticsWrapper
-
- All Implemented Interfaces:
DataStructureInterface
@Experimental public class EvaluationStatisticsWrapper extends Object implements DataStructureInterface
A wrapper around a data structure to support evaluation statistics that need to be notified of added or removed statements.
-
-
Constructor Summary
Constructors Constructor Description EvaluationStatisticsWrapper(DataStructureInterface delegate, DynamicStatistics dynamicStatistics)
-
Method Summary
-
-
-
Constructor Detail
-
EvaluationStatisticsWrapper
public EvaluationStatisticsWrapper(DataStructureInterface delegate, DynamicStatistics dynamicStatistics)
-
-
Method Detail
-
addStatement
public void addStatement(ExtensibleStatement statement)
- Specified by:
addStatement
in interfaceDataStructureInterface
-
removeStatement
public void removeStatement(ExtensibleStatement statement)
- Specified by:
removeStatement
in interfaceDataStructureInterface
-
getStatements
public CloseableIteration<? extends ExtensibleStatement> getStatements(Resource subject, IRI predicate, Value object, boolean inferred, Resource... context)
- Specified by:
getStatements
in interfaceDataStructureInterface
-
getStatements
public CloseableIteration<? extends ExtensibleStatement> getStatements(StatementOrder statementOrder, Resource subject, IRI predicate, Value object, boolean inferred, Resource... contexts)
- Specified by:
getStatements
in interfaceDataStructureInterface
-
flushForReading
public void flushForReading()
- Specified by:
flushForReading
in interfaceDataStructureInterface
-
init
public void init()
- Specified by:
init
in interfaceDataStructureInterface
-
clear
public void clear(boolean inferred, Resource[] contexts)
- Specified by:
clear
in interfaceDataStructureInterface
-
flushForCommit
public void flushForCommit()
- Specified by:
flushForCommit
in interfaceDataStructureInterface
-
removeStatementsByQuery
public boolean removeStatementsByQuery(Resource subj, IRI pred, Value obj, boolean inferred, Resource[] contexts)
- Specified by:
removeStatementsByQuery
in interfaceDataStructureInterface
-
addStatement
public void addStatement(Collection<ExtensibleStatement> statements)
- Specified by:
addStatement
in interfaceDataStructureInterface
-
removeStatement
public void removeStatement(Collection<ExtensibleStatement> statements)
- Specified by:
removeStatement
in interfaceDataStructureInterface
-
getEstimatedSize
public long getEstimatedSize()
- Specified by:
getEstimatedSize
in interfaceDataStructureInterface
-
getSupportedOrders
public Set<StatementOrder> getSupportedOrders(Resource subj, IRI pred, Value obj, boolean inferred, Resource... contexts)
- Specified by:
getSupportedOrders
in interfaceDataStructureInterface
-
getComparator
public Comparator<Value> getComparator()
- Specified by:
getComparator
in interfaceDataStructureInterface
-
setEvaluationStatistics
public void setEvaluationStatistics(DynamicStatistics dynamicStatistics)
-
-