Package org.eclipse.rdf4j.sail.base
Interface SailClosable
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Subinterfaces:
SailDataset,SailSink,SailSource,SailStore
- All Known Implementing Classes:
BackingSailSource,Changeset,DelegatingSailDataset,DelegatingSailSource,MemorySailStore,MemorySailStore.MemorySailDataset,MemorySailStore.MemorySailSink,MemorySailStore.MemorySailSource,ObservingSailDataset,SailDatasetImpl,SailSourceBranch,SnapshotSailStore,UnionSailDataset,UnionSailSource
public interface SailClosable extends java.lang.AutoCloseableCommon interface to objects that throwSailExceptionon close.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes this resource, relinquishing any underlying resources.
-
-
-
Method Detail
-
close
void close() throws SailExceptionCloses this resource, relinquishing any underlying resources.- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
SailException- if this resource cannot be closed
-
-