Uses of Interface
org.eclipse.rdf4j.sail.SailConnection
-
Packages that use SailConnection Package Description org.eclipse.rdf4j.federated org.eclipse.rdf4j.federated.repository org.eclipse.rdf4j.repository.sail Repository implementation for local RDF databases that implement the SAIL SPI.org.eclipse.rdf4j.repository.sail.helpers Helper and utility classes for theSailRepository
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.elasticsearchstore Elasticsearch store for string triples.org.eclipse.rdf4j.sail.evaluation org.eclipse.rdf4j.sail.extensiblestore Elasticsearch store for string triplesorg.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations.org.eclipse.rdf4j.sail.inferencer org.eclipse.rdf4j.sail.inferencer.fc Forward-chaining inferencers, implemented asStackableSail
s.org.eclipse.rdf4j.sail.lmdb The LMDB based Store.org.eclipse.rdf4j.sail.lucene A Sail implementation that supports full-text indexing via the Lucene API.org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.model org.eclipse.rdf4j.sail.nativerdf The Native Store.org.eclipse.rdf4j.sail.shacl A Sail implementation for SHACL constraint checking.org.eclipse.rdf4j.sail.shacl.ast.planNodes org.eclipse.rdf4j.sail.shacl.wrapper.data org.eclipse.rdf4j.sail.shacl.wrapper.shape org.eclipse.rdf4j.testsuite.sail -
-
Uses of SailConnection in org.eclipse.rdf4j.federated
Classes in org.eclipse.rdf4j.federated that implement SailConnection Modifier and Type Class Description class
FedXConnection
An implementation of RepositoryConnection that usesFederationEvalStrategy
to evaluate provided queries.Methods in org.eclipse.rdf4j.federated that return SailConnection Modifier and Type Method Description protected SailConnection
FedX. getConnectionInternal()
protected SailConnection
FedXConnection.SailBaseDefaultImpl. getConnectionInternal()
Methods in org.eclipse.rdf4j.federated with parameters of type SailConnection Modifier and Type Method Description protected void
FedXConnection.SailBaseDefaultImpl. connectionClosed(SailConnection connection)
-
Uses of SailConnection in org.eclipse.rdf4j.federated.repository
Constructors in org.eclipse.rdf4j.federated.repository with parameters of type SailConnection Constructor Description FedXRepositoryConnection(FedXRepository repository, SailConnection sailConnection)
-
Uses of SailConnection in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that return SailConnection Modifier and Type Method Description SailConnection
SailRepositoryConnection. getSailConnection()
Returns the underlying SailConnection.Constructors in org.eclipse.rdf4j.repository.sail with parameters of type SailConnection Constructor Description SailRepositoryConnection(SailRepository repository, SailConnection sailConnection)
Creates a new repository connection that will wrap the supplied SailConnection. -
Uses of SailConnection in org.eclipse.rdf4j.repository.sail.helpers
Constructors in org.eclipse.rdf4j.repository.sail.helpers with parameters of type SailConnection Constructor Description RDFSailInserter(SailConnection con, ValueFactory vf)
RDFSailInserter(SailConnection con, ValueFactory vf, UpdateContext uc)
Creates a new RDFInserter object that preserves bnode IDs and that does not enforce any context upon statements that are reported to it.SailUpdateExecutor(SailConnection con, ValueFactory vf, ParserConfig loadConfig)
Implementation ofSailUpdate.execute()
usingevaluate(TupleExpr, Dataset, BindingSet, boolean)
and otherSailConnection
methods. -
Uses of SailConnection in org.eclipse.rdf4j.sail
Subinterfaces of SailConnection in org.eclipse.rdf4j.sail Modifier and Type Interface Description interface
NotifyingSailConnection
A connection to an RDF Sail object.Methods in org.eclipse.rdf4j.sail that return SailConnection Modifier and Type Method Description SailConnection
Sail. getConnection()
Opens a connection on the Sail which can be used to query and update data. -
Uses of SailConnection in org.eclipse.rdf4j.sail.base
Classes in org.eclipse.rdf4j.sail.base that implement SailConnection Modifier and Type Class Description class
SailSourceConnection
ASailConnection
implementation that is based on anSailStore
. -
Uses of SailConnection in org.eclipse.rdf4j.sail.elasticsearchstore
Classes in org.eclipse.rdf4j.sail.elasticsearchstore that implement SailConnection Modifier and Type Class Description class
ElasticsearchStoreConnection
-
Uses of SailConnection in org.eclipse.rdf4j.sail.evaluation
Constructors in org.eclipse.rdf4j.sail.evaluation with parameters of type SailConnection Constructor Description SailTripleSource(SailConnection conn, boolean includeInferred, ValueFactory valueFactory)
-
Uses of SailConnection in org.eclipse.rdf4j.sail.extensiblestore
Classes in org.eclipse.rdf4j.sail.extensiblestore that implement SailConnection Modifier and Type Class Description class
ExtensibleStoreConnection<E extends ExtensibleStore>
-
Uses of SailConnection in org.eclipse.rdf4j.sail.helpers
Classes in org.eclipse.rdf4j.sail.helpers that implement SailConnection Modifier and Type Class Description class
AbstractNotifyingSailConnection
Abstract Class offering base functionality for SailConnection implementations.class
AbstractSailConnection
Abstract Class offering base functionality for SailConnection implementations.class
NotifyingSailConnectionBase
Deprecated, for removal: This API element is subject to removal in a future version.since RDF4J 4.0.class
NotifyingSailConnectionWrapper
An implementation of theNotifyingSailConnection
interface that wraps anotherNotifyingSailConnection
object and forwards any method calls to the wrapped transaction.class
SailConnectionWrapper
An implementation of the SailConnection interface that wraps another SailConnection object and forwards any method calls to the wrapped connection.Methods in org.eclipse.rdf4j.sail.helpers that return SailConnection Modifier and Type Method Description SailConnection
AbstractSail. getConnection()
SailConnection
SailWrapper. getConnection()
protected abstract SailConnection
AbstractSail. getConnectionInternal()
Returns a store-specific SailConnection object.SailConnection
SailConnectionWrapper. getWrappedConnection()
Gets the connection that is wrapped by this object.Methods in org.eclipse.rdf4j.sail.helpers with parameters of type SailConnection Modifier and Type Method Description protected void
AbstractSail. connectionClosed(SailConnection connection)
Signals to the store that the supplied connection has been closed; called byAbstractSailConnection.close()
.Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type SailConnection Constructor Description SailConnectionWrapper(SailConnection wrappedCon)
Creates a new TransactionWrapper object that wraps the supplied connection. -
Uses of SailConnection in org.eclipse.rdf4j.sail.inferencer
Subinterfaces of SailConnection in org.eclipse.rdf4j.sail.inferencer Modifier and Type Interface Description interface
InferencerConnection
An extension of theSailConnection
interface offering methods that can be used by inferencers to store and remove inferred statements.Classes in org.eclipse.rdf4j.sail.inferencer that implement SailConnection Modifier and Type Class Description class
InferencerConnectionWrapper
An extension of ConnectionWrapper that implements theInferencerConnection
interface. -
Uses of SailConnection in org.eclipse.rdf4j.sail.inferencer.fc
Classes in org.eclipse.rdf4j.sail.inferencer.fc that implement SailConnection Modifier and Type Class Description class
AbstractForwardChainingInferencerConnection
class
DedupingInferencerConnection
class
SchemaCachingRDFSInferencerConnection
-
Uses of SailConnection in org.eclipse.rdf4j.sail.lmdb
Classes in org.eclipse.rdf4j.sail.lmdb that implement SailConnection Modifier and Type Class Description class
LmdbStoreConnection
Connection to anLmdbStore
. -
Uses of SailConnection in org.eclipse.rdf4j.sail.lucene
Classes in org.eclipse.rdf4j.sail.lucene that implement SailConnection Modifier and Type Class Description class
LuceneSailConnection
-
Uses of SailConnection in org.eclipse.rdf4j.sail.memory
Classes in org.eclipse.rdf4j.sail.memory that implement SailConnection Modifier and Type Class Description class
MemoryStoreConnection
Implementation of a Sail Connection for memory stores. -
Uses of SailConnection in org.eclipse.rdf4j.sail.model
Methods in org.eclipse.rdf4j.sail.model with parameters of type SailConnection Modifier and Type Method Description void
SailModel. setConnection(SailConnection conn)
Constructors in org.eclipse.rdf4j.sail.model with parameters of type SailConnection Constructor Description SailModel(SailConnection conn, boolean includeInferred)
-
Uses of SailConnection in org.eclipse.rdf4j.sail.nativerdf
Classes in org.eclipse.rdf4j.sail.nativerdf that implement SailConnection Modifier and Type Class Description class
LimitedSizeNativeStoreConnection
Deprecated, for removal: This API element is subject to removal in a future version.since 4.2.4.class
NativeStoreConnection
-
Uses of SailConnection in org.eclipse.rdf4j.sail.shacl
Classes in org.eclipse.rdf4j.sail.shacl that implement SailConnection Modifier and Type Class Description class
ShaclSailConnection
Methods in org.eclipse.rdf4j.sail.shacl with parameters of type SailConnection Modifier and Type Method Description List<org.eclipse.rdf4j.sail.shacl.ast.ContextWithShapes>
ShaclSail. getShapes(RepositoryConnection shapesRepoConnection, SailConnection sailConnection, IRI[] shapesGraphs)
-
Uses of SailConnection in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Constructors in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type SailConnection Constructor Description AllTargetsPlanNode(SailConnection sailConnection, Resource[] dataGraph, ArrayDeque<EffectiveTarget.EffectiveTargetFragment> chain, List<org.eclipse.rdf4j.sail.shacl.ast.StatementMatcher.Variable<Value>> vars, ConstraintComponent.Scope scope)
BindSelect(SailConnection connection, Resource[] dataGraph, org.eclipse.rdf4j.sail.shacl.ast.SparqlFragment query, List<org.eclipse.rdf4j.sail.shacl.ast.StatementMatcher.Variable<Value>> vars, PlanNode source, List<String> varNames, ConstraintComponent.Scope scope, int bulkSize, EffectiveTarget.Extend direction, boolean includePropertyShapeValues)
BulkedExternalInnerJoin(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, org.eclipse.rdf4j.sail.shacl.ast.SparqlFragment query, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection, Function<BindingSet,ValidationTuple> mapper)
BulkedExternalLeftOuterJoin(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, org.eclipse.rdf4j.sail.shacl.ast.SparqlFragment query, Function<BindingSet,ValidationTuple> mapper)
ExternalFilterByQuery(SailConnection connection, Resource[] dataGraph, PlanNode parent, org.eclipse.rdf4j.sail.shacl.ast.SparqlFragment queryFragment, org.eclipse.rdf4j.sail.shacl.ast.StatementMatcher.Variable queryVariable, Function<ValidationTuple,Value> filterOn)
FilterByPredicate(SailConnection connection, Set<IRI> filterOnPredicates, PlanNode parent, FilterByPredicate.On on, Resource[] dataGraph)
FilterByPredicateObject(SailConnection connection, Resource[] dataGraph, IRI filterOnPredicate, Set<Resource> filterOnObject, PlanNode parent, boolean returnMatching, FilterByPredicateObject.FilterOn filterOn, boolean includeInferred)
FilterTargetIsObject(SailConnection connection, Resource[] dataGraph, PlanNode parent)
FilterTargetIsSubject(SailConnection connection, Resource[] dataGraph, PlanNode parent)
Select(SailConnection connection, String query, Function<BindingSet,ValidationTuple> mapper, Resource[] dataGraph)
Select(SailConnection connection, org.eclipse.rdf4j.sail.shacl.ast.SparqlFragment queryFragment, String orderBy, Function<BindingSet,ValidationTuple> mapper, Resource[] dataGraph)
SparqlConstraintSelect(SailConnection connection, PlanNode targets, String query, ConstraintComponent.Scope scope, Resource[] dataGraph, boolean produceValidationReports, ConstraintComponent constraintComponent, org.eclipse.rdf4j.sail.shacl.ast.Shape shape)
UnorderedSelect(SailConnection connection, Resource subject, IRI predicate, Value object, Resource[] dataGraph, Function<Statement,ValidationTuple> mapper)
-
Uses of SailConnection in org.eclipse.rdf4j.sail.shacl.wrapper.data
Classes in org.eclipse.rdf4j.sail.shacl.wrapper.data that implement SailConnection Modifier and Type Class Description class
VerySimpleRdfsBackwardsChainingConnection
Very simple RDFS backwardschaining connection that supports type inference on hasStatement and getStatement.Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data that return SailConnection Modifier and Type Method Description SailConnection
ConnectionsGroup. getAddedStatements()
SailConnection
ConnectionsGroup. getBaseConnection()
SailConnection
ConnectionsGroup. getPreviousStateConnection()
SailConnection
ConnectionsGroup. getRemovedStatements()
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type SailConnection Modifier and Type Method Description static RdfsSubClassOfReasoner
RdfsSubClassOfReasoner. createReasoner(SailConnection sailConnection, SailConnection secondConnection, ValidationSettings validationSettings)
static RdfsSubClassOfReasoner
RdfsSubClassOfReasoner. createReasoner(SailConnection sailConnection, ValidationSettings validationSettings)
Constructors in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type SailConnection Constructor Description ConnectionsGroup(SailConnection baseConnection, SailConnection previousStateConnection, Sail addedStatements, Sail removedStatements, Stats stats, ConnectionsGroup.RdfsSubClassOfReasonerProvider rdfsSubClassOfReasonerProvider, ShaclSailConnection.Settings transactionSettings, boolean sparqlValidation)
VerySimpleRdfsBackwardsChainingConnection(SailConnection wrappedCon, RdfsSubClassOfReasoner rdfsSubClassOfReasoner)
-
Uses of SailConnection in org.eclipse.rdf4j.sail.shacl.wrapper.shape
Constructors in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type SailConnection Constructor Description BackwardChainingShapeSource(SailConnection connection)
CombinedShapeSource(RepositoryConnection shapesForForwardChainingConnection, SailConnection sailConnection)
CombinedShapeSource(SailConnection shapesForForwardChainingConnection, SailConnection sailConnection)
ForwardChainingShapeSource(SailConnection connection)
SailConnectionShapeSource(SailConnection connection)
-
Uses of SailConnection in org.eclipse.rdf4j.testsuite.sail
Fields in org.eclipse.rdf4j.testsuite.sail declared as SailConnection Modifier and Type Field Description protected SailConnection
RDFStoreTest. con
Methods in org.eclipse.rdf4j.testsuite.sail with parameters of type SailConnection Modifier and Type Method Description protected long
SailIsolationLevelTest. count(SailConnection con, Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
protected void
SailConcurrencyTest. insertTestStatement(SailConnection connection, int i)
protected void
SailIsolationLevelTest. insertTestStatement(SailConnection connection, int i)
protected Literal
SailIsolationLevelTest. readLiteral(SailConnection con, IRI subj, IRI pred)
protected void
SailConcurrencyTest. removeTestStatement(SailConnection connection, int i)
-