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.AutoCloseable
Common interface to objects that throwSailException
on close.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Closes this resource, relinquishing any underlying resources.
-
-
-
Method Detail
-
close
void close() throws SailException
Closes this resource, relinquishing any underlying resources.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
SailException
- if this resource cannot be closed
-
-