Uses of Interface
org.eclipse.rdf4j.sail.Sail
-
Packages that use Sail Package Description 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.config org.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations. -
-
Uses of Sail in org.eclipse.rdf4j.sail
Subinterfaces of Sail in org.eclipse.rdf4j.sail Modifier and Type Interface Description interfaceNotifyingSailAn interface forSails that notify registeredSailChangedListeners of changes in the data in the Sail.interfaceStackableSailAn interface for Sails that can be stacked on top of other Sails.Methods in org.eclipse.rdf4j.sail that return Sail Modifier and Type Method Description SailStackableSail. getBaseSail()Gets the base Sail that this Sail works on top of.SailSailChangedEvent. getSail()The Sail object that sent this event.Methods in org.eclipse.rdf4j.sail with parameters of type Sail Modifier and Type Method Description voidStackableSail. setBaseSail(Sail baseSail)Sets the base Sail that this Sail will work on top of. -
Uses of Sail in org.eclipse.rdf4j.sail.config
Methods in org.eclipse.rdf4j.sail.config that return Sail Modifier and Type Method Description SailSailFactory. getSail(SailImplConfig config)Returns a Sail instance that has been initialized using the supplied configuration data. -
Uses of Sail in org.eclipse.rdf4j.sail.helpers
Classes in org.eclipse.rdf4j.sail.helpers that implement Sail Modifier and Type Class Description classAbstractNotifyingSailA baseNotifyingSailimplementation 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.classAbstractSailAn abstract Sail 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.classNotifyingSailWrapperAn implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail.classSailWrapperAn implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail.Methods in org.eclipse.rdf4j.sail.helpers with type parameters of type Sail Modifier and Type Method Description static <C extends Sail>
CSailUtil. findSailInStack(Sail topSail, Class<C> sailClass)Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.Methods in org.eclipse.rdf4j.sail.helpers that return Sail Modifier and Type Method Description SailSailWrapper. getBaseSail()SailDefaultSailChangedEvent. getSail()Methods in org.eclipse.rdf4j.sail.helpers with parameters of type Sail Modifier and Type Method Description static <C extends Sail>
CSailUtil. findSailInStack(Sail topSail, Class<C> sailClass)Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.voidNotifyingSailWrapper. setBaseSail(Sail baseSail)voidSailWrapper. setBaseSail(Sail baseSail)Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type Sail Constructor Description DefaultSailChangedEvent(Sail sail)Creates a new DefaultSailChangedEvent in which all possible changes are set to false.SailWrapper(Sail baseSail)Creates a new SailWrapper that wraps the supplied Sail.
-