Package org.eclipse.rdf4j.sail.config
Interface SailImplConfig
-
- All Known Subinterfaces:
DelegatingSailImplConfig
- All Known Implementing Classes:
AbstractDelegatingSailImplConfig,AbstractSailImplConfig
public interface SailImplConfigConfiguration of a Sail implementation.- Author:
- Arjohn Kampman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.rdf4j.model.Resourceexport(org.eclipse.rdf4j.model.Model graph)longgetIterationCacheSyncThreshold()StringgetType()voidparse(org.eclipse.rdf4j.model.Model graph, org.eclipse.rdf4j.model.Resource implNode)voidvalidate()Validates this configuration.
-
-
-
Method Detail
-
getType
String getType()
-
getIterationCacheSyncThreshold
long getIterationCacheSyncThreshold()
-
validate
void validate() throws SailConfigExceptionValidates this configuration. ASailConfigExceptionis thrown when the configuration is invalid. The exception should contain an error message that indicates why the configuration is invalid.- Throws:
SailConfigException- If the configuration is invalid.
-
export
org.eclipse.rdf4j.model.Resource export(org.eclipse.rdf4j.model.Model graph)
-
parse
void parse(org.eclipse.rdf4j.model.Model graph, org.eclipse.rdf4j.model.Resource implNode) throws SailConfigException- Throws:
SailConfigException
-
-