Uses of Class
org.eclipse.rdf4j.sail.helpers.AbstractSail
-
Packages that use AbstractSail Package Description org.eclipse.rdf4j.federated 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.extensiblestore Elasticsearch store for string triplesorg.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations.org.eclipse.rdf4j.sail.lmdb The LMDB based Store.org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.nativerdf The Native Store. -
-
Uses of AbstractSail in org.eclipse.rdf4j.federated
Subclasses of AbstractSail in org.eclipse.rdf4j.federated Modifier and Type Class Description class
FedX
FedX serves as implementation of the federation layer.protected static class
FedXConnection.SailBaseDefaultImpl
A default implementation forAbstractSail
. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.base
Constructors in org.eclipse.rdf4j.sail.base with parameters of type AbstractSail Constructor Description SailSourceConnection(AbstractSail sail, SailStore store, EvaluationStrategyFactory evalStratFactory)
Creates a newSailConnection
, using the givenSailStore
to manage the state.SailSourceConnection(AbstractSail sail, SailStore store, FederatedServiceResolver resolver)
Creates a newSailConnection
, using the givenSailStore
to manage the state. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.elasticsearchstore
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.elasticsearchstore Modifier and Type Class Description class
ElasticsearchStore
An RDF4J SailStore persisted to Elasticsearch. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.extensiblestore
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.extensiblestore Modifier and Type Class Description class
ExtensibleStore<T extends DataStructureInterface,N extends NamespaceStoreInterface>
A store where the backing storage can be implemented by the user. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.helpers
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.helpers Modifier and Type Class Description class
AbstractNotifyingSail
A baseNotifyingSail
implementation that takes care of common sail tasks, including proper closing of active connections and a grace period for active connections during shutdown of the store.Methods in org.eclipse.rdf4j.sail.helpers that return AbstractSail Modifier and Type Method Description protected AbstractSail
AbstractSailConnection. getSailBase()
Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type AbstractSail Constructor Description AbstractNotifyingSailConnection(AbstractSail sailBase)
AbstractSailConnection(AbstractSail sailBase)
NotifyingSailConnectionBase(AbstractSail sailBase)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.lmdb
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.lmdb Modifier and Type Class Description class
LmdbStore
A SAIL implementation using LMDB for storing and querying its data. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.memory
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.memory Modifier and Type Class Description class
MemoryStore
An implementation of the Sail interface that stores its data in main memory and that can use a file for persistent storage. -
Uses of AbstractSail in org.eclipse.rdf4j.sail.nativerdf
Subclasses of AbstractSail in org.eclipse.rdf4j.sail.nativerdf Modifier and Type Class Description class
LimitedSizeNativeStore
Deprecated, for removal: This API element is subject to removal in a future version.since 4.2.4.class
NativeStore
A SAIL implementation using B-Tree indexing on disk for storing and querying its data.
-