Uses of Interface
org.eclipse.rdf4j.common.transaction.IsolationLevel
-
Packages that use IsolationLevel Package Description org.eclipse.rdf4j.common.transaction Common classes and interfaces for transaction settingsorg.eclipse.rdf4j.http.client org.eclipse.rdf4j.repository The Repository API: the main API for accessing rdf databases and SPARQL endpoints.org.eclipse.rdf4j.repository.base Abstract base classes and wrappers for the main Repository API interfaces.org.eclipse.rdf4j.repository.sail Repository implementation for local RDF databases that implement the SAIL SPI.org.eclipse.rdf4j.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.org.eclipse.rdf4j.sail.base Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).org.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations.org.eclipse.rdf4j.sail.inferencer.fc Forward-chaining inferencers, implemented asStackableSail
s.org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.shacl 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 IsolationLevel Modifier and Type Class Description class
IsolationLevels
Enumeration of TransactionIsolationLevel
s supported by RDF4J.Methods in org.eclipse.rdf4j.common.transaction that return IsolationLevel Modifier and Type Method Description static IsolationLevel
IsolationLevels. getCompatibleIsolationLevel(IsolationLevel level, java.util.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 IsolationLevel Modifier and Type Method Description static IsolationLevel
IsolationLevels. getCompatibleIsolationLevel(IsolationLevel level, java.util.List<? extends IsolationLevel> supportedLevels)
Determines the first compatible isolation level in the list of supported levels, for the given level.boolean
IsolationLevel. 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.boolean
IsolationLevels. isCompatibleWith(IsolationLevel otherLevel)
Method parameters in org.eclipse.rdf4j.common.transaction with type arguments of type IsolationLevel Modifier and Type Method Description static IsolationLevel
IsolationLevels. getCompatibleIsolationLevel(IsolationLevel level, java.util.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 IsolationLevel Modifier and Type Method Description void
RDF4JProtocolSession. beginTransaction(IsolationLevel isolationLevel)
-
Uses of IsolationLevel in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return IsolationLevel Modifier and Type Method Description IsolationLevel
RepositoryConnection. getIsolationLevel()
Retrieves the currenttransaction isolation level
of the connection.Methods in org.eclipse.rdf4j.repository with parameters of type IsolationLevel Modifier and Type Method Description void
RepositoryConnection. begin(IsolationLevel level)
Begins a new transaction with the suppliedIsolationLevel
, requiringRepositoryConnection.commit()
orRepositoryConnection.rollback()
to be called to end the transaction.void
RepositoryConnection. 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 IsolationLevel Modifier and Type Field Description private IsolationLevel
AbstractRepositoryConnection. isolationLevel
Methods in org.eclipse.rdf4j.repository.base that return IsolationLevel Modifier and Type Method Description IsolationLevel
AbstractRepositoryConnection. getIsolationLevel()
IsolationLevel
RepositoryConnectionWrapper. getIsolationLevel()
Methods in org.eclipse.rdf4j.repository.base with parameters of type IsolationLevel Modifier and Type Method Description void
AbstractRepositoryConnection. begin(IsolationLevel level)
void
RepositoryConnectionWrapper. begin(IsolationLevel level)
void
AbstractRepositoryConnection. setIsolationLevel(IsolationLevel level)
void
RepositoryConnectionWrapper. setIsolationLevel(IsolationLevel level)
-
Uses of IsolationLevel in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail with parameters of type IsolationLevel Modifier and Type Method Description void
SailRepositoryConnection. begin(IsolationLevel level)
-
Uses of IsolationLevel in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return IsolationLevel Modifier and Type Method Description IsolationLevel
Sail. getDefaultIsolationLevel()
Retrieves the defaultIsolationLevel
level on which transactions in this Sail operate.Methods in org.eclipse.rdf4j.sail that return types with arguments of type IsolationLevel Modifier and Type Method Description java.util.List<IsolationLevel>
Sail. getSupportedIsolationLevels()
Retrieve theIsolationLevel
s supported by this SAIL, ordered by increasing complexity.Methods in org.eclipse.rdf4j.sail with parameters of type IsolationLevel Modifier and Type Method Description void
SailConnection. begin(IsolationLevel level)
Begins a transaction with the specifiedIsolationLevel
level, 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 IsolationLevel Modifier and Type Field Description private IsolationLevel
SailSourceConnection. defaultIsolationLevel
The defaultIsolationLevel
when not otherwise specified.Methods in org.eclipse.rdf4j.sail.base that return IsolationLevel Modifier and Type Method Description private IsolationLevel
SailSourceConnection. getIsolationLevel()
Methods in org.eclipse.rdf4j.sail.base with parameters of type IsolationLevel Modifier and Type Method Description SailDataset
DelegatingSailSource. dataset(IsolationLevel level)
SailDataset
SailSource. dataset(IsolationLevel level)
Create an observableSailDataset
of the current state of thisSailSource
.SailDataset
SailSourceBranch. dataset(IsolationLevel level)
SailDataset
UnionSailSource. dataset(IsolationLevel level)
private SailDataset
SailSourceBranch. derivedFromSerializable(IsolationLevel level)
private SailDataset
SailSourceBranch. derivedFromSnapshot(IsolationLevel level)
SailSink
DelegatingSailSource. sink(IsolationLevel level)
SailSink
SailSource. sink(IsolationLevel level)
Create aSailSink
that when when itsSailSource.flush()
is called, the changes are applied to this source.SailSink
SailSourceBranch. sink(IsolationLevel level)
SailSink
UnionSailSource. sink(IsolationLevel level)
-
Uses of IsolationLevel in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as IsolationLevel Modifier and Type Field Description private IsolationLevel
AbstractSail. defaultIsolationLevel
default transaction isolation level, set toIsolationLevels.READ_COMMITTED
.private IsolationLevel
AbstractSailConnection. transactionIsolationLevel
Fields in org.eclipse.rdf4j.sail.helpers with type parameters of type IsolationLevel Modifier and Type Field Description private java.util.List<IsolationLevel>
AbstractSail. supportedIsolationLevels
list of supported isolation levels.Methods in org.eclipse.rdf4j.sail.helpers that return IsolationLevel Modifier and Type Method Description IsolationLevel
AbstractSail. getDefaultIsolationLevel()
IsolationLevel
SailWrapper. getDefaultIsolationLevel()
protected IsolationLevel
AbstractSailConnection. getTransactionIsolation()
Retrieve the currently setIsolationLevel
.Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type IsolationLevel Modifier and Type Method Description java.util.List<IsolationLevel>
AbstractSail. getSupportedIsolationLevels()
java.util.List<IsolationLevel>
SailWrapper. getSupportedIsolationLevels()
Methods in org.eclipse.rdf4j.sail.helpers with parameters of type IsolationLevel Modifier and Type Method Description void
AbstractSailConnection. begin(IsolationLevel isolationLevel)
void
SailConnectionWrapper. begin(IsolationLevel level)
protected void
AbstractSail. removeSupportedIsolationLevel(IsolationLevel level)
Removes all occurrences of the providedIsolationLevels
in the list of supported Isolation levels.void
AbstractSail. setDefaultIsolationLevel(IsolationLevel defaultIsolationLevel)
Sets the defaultIsolationLevel
on which transactions in this Sail operate.protected void
AbstractSail. setSupportedIsolationLevels(IsolationLevel... supportedIsolationLevels)
Sets the list of supportedIsolationLevels
s for this SAIL.Method parameters in org.eclipse.rdf4j.sail.helpers with type arguments of type IsolationLevel Modifier and Type Method Description protected void
AbstractSail. setSupportedIsolationLevels(java.util.List<IsolationLevel> supportedIsolationLevels)
Sets the list of supportedIsolationLevels
s for this SAIL. -
Uses of IsolationLevel in org.eclipse.rdf4j.sail.inferencer.fc
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return IsolationLevel Modifier and Type Method Description IsolationLevel
AbstractForwardChainingInferencer. getDefaultIsolationLevel()
IsolationLevel
SchemaCachingRDFSInferencer. getDefaultIsolationLevel()
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return types with arguments of type IsolationLevel Modifier and Type Method Description java.util.List<IsolationLevel>
AbstractForwardChainingInferencer. getSupportedIsolationLevels()
Methods in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type IsolationLevel Modifier and Type Method Description void
AbstractForwardChainingInferencerConnection. begin(IsolationLevel level)
void
SchemaCachingRDFSInferencerConnection. begin(IsolationLevel level)
-
Uses of IsolationLevel in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory with parameters of type IsolationLevel Modifier and Type Method Description MemorySailStore.MemorySailDataset
MemorySailStore.MemorySailSource. dataset(IsolationLevel level)
SailSink
MemorySailStore.MemorySailSource. sink(IsolationLevel level)
-
Uses of IsolationLevel in org.eclipse.rdf4j.sail.shacl
Fields in org.eclipse.rdf4j.sail.shacl declared as IsolationLevel Modifier and Type Field Description private IsolationLevel
ShaclSailConnection. currentIsolationLevel
private IsolationLevel
ShaclSailConnection.Settings. isolationLevel
Methods in org.eclipse.rdf4j.sail.shacl that return IsolationLevel Modifier and Type Method Description IsolationLevel
ShaclSailBaseConfiguration. getDefaultIsolationLevel()
private IsolationLevel
ShaclSailConnection. getIsolationLevel()
IsolationLevel
ShaclSailConnection.Settings. getIsolationLevel()
Methods in org.eclipse.rdf4j.sail.shacl with parameters of type IsolationLevel Modifier and Type Method Description void
ShaclSailConnection. begin(IsolationLevel level)
private void
ShaclSailConnection.Settings. setIsolationLevel(IsolationLevel isolationLevel)
Constructors in org.eclipse.rdf4j.sail.shacl with parameters of type IsolationLevel Constructor Description Settings(boolean cacheSelectNodes, boolean validationEnabled, boolean parallelValidation, IsolationLevel isolationLevel)
-