Uses of Interface
org.eclipse.rdf4j.common.transaction.IsolationLevel
Packages that use IsolationLevel
Package
Description
Common classes and interfaces for transaction settings
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
Repository implementation for local RDF databases that implement the SAIL SPI.
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.
Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
Abstract base implementation and internal helper classes for Sail implementations.
Forward-chaining inferencers, implemented as
StackableSails.An implementation of the RDF SAIL API that uses main memory for storage.
A Sail implementation for SHACL constraint checking.
-
Uses of IsolationLevel in org.eclipse.rdf4j.common.transaction
Classes in org.eclipse.rdf4j.common.transaction that implement IsolationLevelModifier and TypeClassDescriptionenumEnumeration of TransactionIsolationLevels supported by RDF4J.Methods in org.eclipse.rdf4j.common.transaction that return IsolationLevelModifier and TypeMethodDescriptionstatic IsolationLevelIsolationLevels.getCompatibleIsolationLevel(IsolationLevel level, List<? extends IsolationLevel> supportedLevels) Determines the first compatible isolation level in the list of supported levels, for the given level.Methods in org.eclipse.rdf4j.common.transaction with parameters of type IsolationLevelModifier and TypeMethodDescriptionstatic IsolationLevelIsolationLevels.getCompatibleIsolationLevel(IsolationLevel level, List<? extends IsolationLevel> supportedLevels) Determines the first compatible isolation level in the list of supported levels, for the given level.booleanIsolationLevel.isCompatibleWith(IsolationLevel otherLevel) Verifies if this transaction isolation level is compatible with the supplied other isolation level - that is, if this transaction isolation level offers at least the same guarantees as the other level.booleanIsolationLevels.isCompatibleWith(IsolationLevel otherLevel) Method parameters in org.eclipse.rdf4j.common.transaction with type arguments of type IsolationLevelModifier and TypeMethodDescriptionstatic IsolationLevelIsolationLevels.getCompatibleIsolationLevel(IsolationLevel level, List<? extends IsolationLevel> supportedLevels) Determines the first compatible isolation level in the list of supported levels, for the given level. -
Uses of IsolationLevel in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidRDF4JProtocolSession.beginTransaction(IsolationLevel isolationLevel) -
Uses of IsolationLevel in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return IsolationLevelModifier and TypeMethodDescriptionRepositoryConnection.getIsolationLevel()Retrieves the currenttransaction isolation levelof the connection.Methods in org.eclipse.rdf4j.repository with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidRepositoryConnection.begin(IsolationLevel level) Begins a new transaction with the suppliedIsolationLevel, requiringRepositoryConnection.commit()orRepositoryConnection.rollback()to be called to end the transaction.voidRepositoryConnection.setIsolationLevel(IsolationLevel level) Sets the transaction isolation level for the next transaction(s) on this connection. -
Uses of IsolationLevel in org.eclipse.rdf4j.repository.base
Fields in org.eclipse.rdf4j.repository.base declared as IsolationLevelModifier and TypeFieldDescriptionprivate IsolationLevelAbstractRepositoryConnection.isolationLevelMethods in org.eclipse.rdf4j.repository.base that return IsolationLevelModifier and TypeMethodDescriptionAbstractRepositoryConnection.getIsolationLevel()RepositoryConnectionWrapper.getIsolationLevel()Methods in org.eclipse.rdf4j.repository.base with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidAbstractRepositoryConnection.begin(IsolationLevel level) voidRepositoryConnectionWrapper.begin(IsolationLevel level) voidAbstractRepositoryConnection.setIsolationLevel(IsolationLevel level) voidRepositoryConnectionWrapper.setIsolationLevel(IsolationLevel level) -
Uses of IsolationLevel in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail with parameters of type IsolationLevel -
Uses of IsolationLevel in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return IsolationLevelModifier and TypeMethodDescriptionSail.getDefaultIsolationLevel()Retrieves the defaultIsolationLevellevel on which transactions in this Sail operate.Methods in org.eclipse.rdf4j.sail that return types with arguments of type IsolationLevelModifier and TypeMethodDescriptionSail.getSupportedIsolationLevels()Retrieve theIsolationLevels supported by this SAIL, ordered by increasing complexity.Methods in org.eclipse.rdf4j.sail with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidSailConnection.begin(IsolationLevel level) Begins a transaction with the specifiedIsolationLevellevel, requiringSailConnection.commit()orSailConnection.rollback()to be called to close the transaction. -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.base
Fields in org.eclipse.rdf4j.sail.base declared as IsolationLevelModifier and TypeFieldDescriptionprivate final IsolationLevelSailSourceConnection.defaultIsolationLevelThe defaultIsolationLevelwhen not otherwise specified.Methods in org.eclipse.rdf4j.sail.base that return IsolationLevelModifier and TypeMethodDescriptionprivate IsolationLevelSailSourceConnection.getIsolationLevel()Methods in org.eclipse.rdf4j.sail.base with parameters of type IsolationLevelModifier and TypeMethodDescriptionDelegatingSailSource.dataset(IsolationLevel level) SailSource.dataset(IsolationLevel level) Create an observableSailDatasetof the current state of thisSailSource.SailSourceBranch.dataset(IsolationLevel level) UnionSailSource.dataset(IsolationLevel level) private SailDatasetSailSourceBranch.derivedFromSerializable(IsolationLevel level) private SailDatasetSailSourceBranch.derivedFromSnapshot(IsolationLevel level) DelegatingSailSource.sink(IsolationLevel level) SailSource.sink(IsolationLevel level) Create aSailSinkthat when when itsSailSource.flush()is called, the changes are applied to this source.SailSourceBranch.sink(IsolationLevel level) UnionSailSource.sink(IsolationLevel level) -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as IsolationLevelModifier and TypeFieldDescriptionprivate IsolationLevelAbstractSail.defaultIsolationLeveldefault transaction isolation level, set toIsolationLevels.READ_COMMITTED.private IsolationLevelAbstractSailConnection.transactionIsolationLevelFields in org.eclipse.rdf4j.sail.helpers with type parameters of type IsolationLevelModifier and TypeFieldDescriptionprivate List<IsolationLevel> AbstractSail.supportedIsolationLevelslist of supported isolation levels.Methods in org.eclipse.rdf4j.sail.helpers that return IsolationLevelModifier and TypeMethodDescriptionAbstractSail.getDefaultIsolationLevel()SailWrapper.getDefaultIsolationLevel()protected IsolationLevelAbstractSailConnection.getTransactionIsolation()Retrieve the currently setIsolationLevel.Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type IsolationLevelModifier and TypeMethodDescriptionAbstractSail.getSupportedIsolationLevels()SailWrapper.getSupportedIsolationLevels()Methods in org.eclipse.rdf4j.sail.helpers with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidAbstractSailConnection.begin(IsolationLevel isolationLevel) voidSailConnectionWrapper.begin(IsolationLevel level) protected voidAbstractSail.removeSupportedIsolationLevel(IsolationLevel level) Removes all occurrences of the providedIsolationLevelsin the list of supported Isolation levels.voidAbstractSail.setDefaultIsolationLevel(IsolationLevel defaultIsolationLevel) Sets the defaultIsolationLevelon which transactions in this Sail operate.protected voidAbstractSail.setSupportedIsolationLevels(IsolationLevel... supportedIsolationLevels) Sets the list of supportedIsolationLevelss for this SAIL.Method parameters in org.eclipse.rdf4j.sail.helpers with type arguments of type IsolationLevelModifier and TypeMethodDescriptionprotected voidAbstractSail.setSupportedIsolationLevels(List<IsolationLevel> supportedIsolationLevels) Sets the list of supportedIsolationLevelss for this SAIL. -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.inferencer.fc
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return IsolationLevelModifier and TypeMethodDescriptionAbstractForwardChainingInferencer.getDefaultIsolationLevel()SchemaCachingRDFSInferencer.getDefaultIsolationLevel()Methods in org.eclipse.rdf4j.sail.inferencer.fc that return types with arguments of type IsolationLevelModifier and TypeMethodDescriptionAbstractForwardChainingInferencer.getSupportedIsolationLevels()Methods in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidAbstractForwardChainingInferencerConnection.begin(IsolationLevel level) voidSchemaCachingRDFSInferencerConnection.begin(IsolationLevel level) -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory with parameters of type IsolationLevelModifier and TypeMethodDescriptionMemorySailStore.MemorySailSource.dataset(IsolationLevel level) MemorySailStore.MemorySailSource.sink(IsolationLevel level) -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.shacl
Fields in org.eclipse.rdf4j.sail.shacl declared as IsolationLevelModifier and TypeFieldDescriptionprivate IsolationLevelShaclSailConnection.currentIsolationLevelprivate IsolationLevelShaclSailConnection.Settings.isolationLevelMethods in org.eclipse.rdf4j.sail.shacl that return IsolationLevelModifier and TypeMethodDescriptionShaclSailBaseConfiguration.getDefaultIsolationLevel()private IsolationLevelShaclSailConnection.getIsolationLevel()ShaclSailConnection.Settings.getIsolationLevel()Methods in org.eclipse.rdf4j.sail.shacl with parameters of type IsolationLevelModifier and TypeMethodDescriptionvoidShaclSailConnection.begin(IsolationLevel level) private voidShaclSailConnection.Settings.setIsolationLevel(IsolationLevel isolationLevel) Constructors in org.eclipse.rdf4j.sail.shacl with parameters of type IsolationLevelModifierConstructorDescriptionSettings(boolean cacheSelectNodes, boolean validationEnabled, boolean parallelValidation, IsolationLevel isolationLevel)